< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/skin/PaginationSkin.java

Print this page




1453                     return (StyleableProperty<Number>)(WritableValue<Number>)skin.arrowButtonGapProperty();
1454                 }
1455             };
1456 
1457         private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;
1458         static {
1459             final List<CssMetaData<? extends Styleable, ?>> styleables =
1460                 new ArrayList<CssMetaData<? extends Styleable, ?>>(SkinBase.getClassCssMetaData());
1461             styleables.add(ARROWS_VISIBLE);
1462             styleables.add(PAGE_INFORMATION_VISIBLE);
1463             styleables.add(PAGE_INFORMATION_ALIGNMENT);
1464             styleables.add(TOOLTIP_VISIBLE);
1465             styleables.add(ARROW_BUTTON_GAP);
1466             STYLEABLES = Collections.unmodifiableList(styleables);
1467         }
1468     }
1469 
1470     /**
1471      * Returns the CssMetaData associated with this class, which may include the
1472      * CssMetaData of its superclasses.


1473      */
1474     public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {
1475         return StyleableProperties.STYLEABLES;
1476     }
1477 
1478     /**
1479      * {@inheritDoc}
1480      */
1481     @Override
1482     public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {
1483         return getClassCssMetaData();
1484     }
1485 
1486 }


1453                     return (StyleableProperty<Number>)(WritableValue<Number>)skin.arrowButtonGapProperty();
1454                 }
1455             };
1456 
1457         private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;
1458         static {
1459             final List<CssMetaData<? extends Styleable, ?>> styleables =
1460                 new ArrayList<CssMetaData<? extends Styleable, ?>>(SkinBase.getClassCssMetaData());
1461             styleables.add(ARROWS_VISIBLE);
1462             styleables.add(PAGE_INFORMATION_VISIBLE);
1463             styleables.add(PAGE_INFORMATION_ALIGNMENT);
1464             styleables.add(TOOLTIP_VISIBLE);
1465             styleables.add(ARROW_BUTTON_GAP);
1466             STYLEABLES = Collections.unmodifiableList(styleables);
1467         }
1468     }
1469 
1470     /**
1471      * Returns the CssMetaData associated with this class, which may include the
1472      * CssMetaData of its superclasses.
1473      * @return the CssMetaData associated with this class, which may include the
1474      * CssMetaData of its superclasses
1475      */
1476     public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {
1477         return StyleableProperties.STYLEABLES;
1478     }
1479 
1480     /**
1481      * {@inheritDoc}
1482      */
1483     @Override
1484     public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {
1485         return getClassCssMetaData();
1486     }
1487 
1488 }
< prev index next >