Class PageSegmentDescriptor


  • class PageSegmentDescriptor
    extends java.lang.Object
    Class holding information on a page segment.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String name  
      private java.lang.String uri  
    • Constructor Summary

      Constructors 
      Constructor Description
      PageSegmentDescriptor​(java.lang.String name, java.lang.String uri)
      Creates a new page segment descriptor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns the name of the page segment (usually 8 upper case letters).
      java.lang.String getURI()
      Returns the URI of the external resource containing the page segment.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • name

        private java.lang.String name
      • uri

        private java.lang.String uri
    • Constructor Detail

      • PageSegmentDescriptor

        public PageSegmentDescriptor​(java.lang.String name,
                                     java.lang.String uri)
        Creates a new page segment descriptor.
        Parameters:
        name - the page segment name
        uri - the URI identifying the external resource file (may be null if the page segment shall be referenced rather than embedded)
    • Method Detail

      • getName

        public java.lang.String getName()
        Returns the name of the page segment (usually 8 upper case letters).
        Returns:
        the name of the page segment
      • getURI

        public java.lang.String getURI()
        Returns the URI of the external resource containing the page segment.
        Returns:
        the URI of the external resource (or null if the resource is not to be embedded)