< prev index next >

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

Print this page




1885     public static final String SCRIPT_TAG = "script";
1886     /**
1887      * &lt;fx:script&gt; 'source' attribute
1888      */
1889     public static final String SCRIPT_SOURCE_ATTRIBUTE = "source";
1890     /**
1891      * &lt;fx:script&gt; 'charset' attribute
1892      */
1893     public static final String SCRIPT_CHARSET_ATTRIBUTE = "charset";
1894 
1895     /**
1896      * The tag name of &lt;fx:define&gt;
1897      */
1898     public static final String DEFINE_TAG = "define";
1899 
1900     /**
1901      * The tag name of &lt;fx:reference&gt;
1902      */
1903     public static final String REFERENCE_TAG = "reference";
1904     /**
1905      * &ltfx:reference&gt 'source' attribute
1906      */
1907     public static final String REFERENCE_SOURCE_ATTRIBUTE = "source";
1908 
1909     /**
1910      * The tag name of &lt;fx:root&gt;
1911      * @since JavaFX 2.2
1912      */
1913     public static final String ROOT_TAG = "root";
1914     /**
1915      * &lt;fx:root&gt; 'type' attribute
1916      * @since JavaFX 2.2
1917      */
1918     public static final String ROOT_TYPE_ATTRIBUTE = "type";
1919 
1920     /**
1921      * The tag name of &lt;fx:copy&gt;
1922      */
1923     public static final String COPY_TAG = "copy";
1924     /**
1925      * &lt;fx:copy&gt; 'source' attribute


1931      */
1932     public static final String EVENT_HANDLER_PREFIX = "on";
1933     /**
1934      * The name of the Event object in event handler scripts
1935      */
1936     public static final String EVENT_KEY = "event";
1937     /**
1938      * Suffix for property change/invalidation handlers
1939      */
1940     public static final String CHANGE_EVENT_HANDLER_SUFFIX = "Change";
1941     private static final String COLLECTION_HANDLER_NAME = EVENT_HANDLER_PREFIX + CHANGE_EVENT_HANDLER_SUFFIX;
1942 
1943     /**
1944      * Value that represents 'null'
1945      */
1946     public static final String NULL_KEYWORD = "null";
1947 
1948     /**
1949      * Escape prefix for escaping special characters inside attribute values.
1950      * Serves as an escape for {@link #ESCAPE_PREFIX}, {@link #RELATIVE_PATH_PREFIX},
1951      * {@link #RESOURCE_KEY_PREFIX, {@link #EXPRESSION_PREFIX}, {@link #BI_DIRECTIONAL_BINDING_PREFIX}
1952      * @since JavaFX 2.1
1953      */
1954     public static final String ESCAPE_PREFIX = "\\";
1955     /**
1956      * Prefix for relative location resultion
1957      */
1958     public static final String RELATIVE_PATH_PREFIX = "@";
1959     /**
1960      * Prefix for resource resolution
1961      */
1962     public static final String RESOURCE_KEY_PREFIX = "%";
1963     /**
1964      * Prefix for (variable) expression resolution
1965      */
1966     public static final String EXPRESSION_PREFIX = "$";
1967     /**
1968      * Prefix for binding expression resolution
1969      */
1970     public static final String BINDING_EXPRESSION_PREFIX = "${";
1971     /**




1885     public static final String SCRIPT_TAG = "script";
1886     /**
1887      * &lt;fx:script&gt; 'source' attribute
1888      */
1889     public static final String SCRIPT_SOURCE_ATTRIBUTE = "source";
1890     /**
1891      * &lt;fx:script&gt; 'charset' attribute
1892      */
1893     public static final String SCRIPT_CHARSET_ATTRIBUTE = "charset";
1894 
1895     /**
1896      * The tag name of &lt;fx:define&gt;
1897      */
1898     public static final String DEFINE_TAG = "define";
1899 
1900     /**
1901      * The tag name of &lt;fx:reference&gt;
1902      */
1903     public static final String REFERENCE_TAG = "reference";
1904     /**
1905      * &lt;fx:reference&gt; 'source' attribute
1906      */
1907     public static final String REFERENCE_SOURCE_ATTRIBUTE = "source";
1908 
1909     /**
1910      * The tag name of &lt;fx:root&gt;
1911      * @since JavaFX 2.2
1912      */
1913     public static final String ROOT_TAG = "root";
1914     /**
1915      * &lt;fx:root&gt; 'type' attribute
1916      * @since JavaFX 2.2
1917      */
1918     public static final String ROOT_TYPE_ATTRIBUTE = "type";
1919 
1920     /**
1921      * The tag name of &lt;fx:copy&gt;
1922      */
1923     public static final String COPY_TAG = "copy";
1924     /**
1925      * &lt;fx:copy&gt; 'source' attribute


1931      */
1932     public static final String EVENT_HANDLER_PREFIX = "on";
1933     /**
1934      * The name of the Event object in event handler scripts
1935      */
1936     public static final String EVENT_KEY = "event";
1937     /**
1938      * Suffix for property change/invalidation handlers
1939      */
1940     public static final String CHANGE_EVENT_HANDLER_SUFFIX = "Change";
1941     private static final String COLLECTION_HANDLER_NAME = EVENT_HANDLER_PREFIX + CHANGE_EVENT_HANDLER_SUFFIX;
1942 
1943     /**
1944      * Value that represents 'null'
1945      */
1946     public static final String NULL_KEYWORD = "null";
1947 
1948     /**
1949      * Escape prefix for escaping special characters inside attribute values.
1950      * Serves as an escape for {@link #ESCAPE_PREFIX}, {@link #RELATIVE_PATH_PREFIX},
1951      * {@link #RESOURCE_KEY_PREFIX}, {@link #EXPRESSION_PREFIX}, {@link #BI_DIRECTIONAL_BINDING_PREFIX}
1952      * @since JavaFX 2.1
1953      */
1954     public static final String ESCAPE_PREFIX = "\\";
1955     /**
1956      * Prefix for relative location resultion
1957      */
1958     public static final String RELATIVE_PATH_PREFIX = "@";
1959     /**
1960      * Prefix for resource resolution
1961      */
1962     public static final String RESOURCE_KEY_PREFIX = "%";
1963     /**
1964      * Prefix for (variable) expression resolution
1965      */
1966     public static final String EXPRESSION_PREFIX = "$";
1967     /**
1968      * Prefix for binding expression resolution
1969      */
1970     public static final String BINDING_EXPRESSION_PREFIX = "${";
1971     /**


< prev index next >