< prev index next >

modules/fxml/src/main/java/javafx/fxml/LoadListener.java

Print this page




  84     public void beginCopyElement();
  85 
  86     /**
  87      * Called when the loader has begun reading a root element.
  88      */
  89     public void beginRootElement();
  90 
  91     /**
  92      * Called when the loader has begun reading a property element.
  93      *
  94      * @param name
  95      * @param sourceType
  96      */
  97     public void beginPropertyElement(String name, Class<?> sourceType);
  98 
  99     /**
 100      * Called when the loader has begun reading a static property element
 101      * defined by an unknown type.
 102      *
 103      * @param name
 104      * @param sourceType
 105      */
 106     public void beginUnknownStaticPropertyElement(String name);
 107 
 108     /**
 109      * Called when the loader has begun reading a script element.
 110      */
 111     public void beginScriptElement();
 112 
 113     /**
 114      * Called when the loader has begun reading a define element.
 115      */
 116     public void beginDefineElement();
 117 
 118     /**
 119      * Called when the loader has read an internal attribute.
 120      *
 121      * @param name
 122      * @param value
 123      */
 124     public void readInternalAttribute(String name, String value);




  84     public void beginCopyElement();
  85 
  86     /**
  87      * Called when the loader has begun reading a root element.
  88      */
  89     public void beginRootElement();
  90 
  91     /**
  92      * Called when the loader has begun reading a property element.
  93      *
  94      * @param name
  95      * @param sourceType
  96      */
  97     public void beginPropertyElement(String name, Class<?> sourceType);
  98 
  99     /**
 100      * Called when the loader has begun reading a static property element
 101      * defined by an unknown type.
 102      *
 103      * @param name

 104      */
 105     public void beginUnknownStaticPropertyElement(String name);
 106 
 107     /**
 108      * Called when the loader has begun reading a script element.
 109      */
 110     public void beginScriptElement();
 111 
 112     /**
 113      * Called when the loader has begun reading a define element.
 114      */
 115     public void beginDefineElement();
 116 
 117     /**
 118      * Called when the loader has read an internal attribute.
 119      *
 120      * @param name
 121      * @param value
 122      */
 123     public void readInternalAttribute(String name, String value);


< prev index next >