Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\javafx\css\StyleClassSet.java
/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.css; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; /** * States represents a set of State. A {@code Node} may be in more than * one pseudo-class state. {@code States} is used to aggregate the active * pseudo-class state of a {@code Node}. */ public final class StyleClassSet extends BitSet<StyleClass> { /** Create an empty set of StyleClass */ public StyleClassSet() { super(); } StyleClassSet(List<String> styleClassNames) { int nMax = styleClassNames != null ? styleClassNames.size() : 0; for(int n=0; n<nMax; n++) { final String styleClass = styleClassNames.get(n); if (styleClass == null || styleClass.isEmpty()) continue; final StyleClass sc = getStyleClass(styleClass); add(sc); } } /** {@inheritDoc} */ @Override public Object[] toArray() { return toArray(new StyleClass[size()]); } /** {@inheritDoc} */ @Override public <T> T[] toArray(T[] a) { if (a.length < size()) { a = (T[]) new StyleClass[size()]; } int index = 0; while(index < getBits().length) { final long state = getBits()[index]; for(int bit=0; bit<Long.SIZE; bit++) { long mask = 1l << bit; if ((state & mask) == mask) { int n = index * Long.SIZE + bit; StyleClass impl = getStyleClass(n); a[index++] = (T) impl; } } } return a; } @Override public String toString() { StringBuilder builder = new StringBuilder("style-classes: ["); Iterator<StyleClass> iter = iterator(); while (iter.hasNext()) { builder.append(iter.next().getStyleClassName()); if (iter.hasNext()) { builder.append(", "); } } builder.append(']'); return builder.toString(); } @Override protected StyleClass cast(Object o) { if (o == null) { throw new NullPointerException("null arg"); } StyleClass styleClass = (StyleClass) o; return styleClass; } @Override protected StyleClass getT(int index) { return getStyleClass(index); } @Override protected int getIndex(StyleClass t) { return t.getIndex(); } /** */ static StyleClass getStyleClass(String styleClass) { if (styleClass == null || styleClass.trim().isEmpty()) { throw new IllegalArgumentException("styleClass cannot be null or empty String"); } StyleClass instance = null; final Integer value = styleClassMap.get(styleClass); final int index = value != null ? value.intValue() : -1; final int size = styleClasses.size(); assert index < size; if (index != -1 && index < size) { instance = styleClasses.get(index); } if (instance == null) { instance = new StyleClass(styleClass, size); styleClasses.add(instance); styleClassMap.put(styleClass, Integer.valueOf(size)); } return instance; } static StyleClass getStyleClass(int index) { if (0 <= index && index < styleClasses.size()) { return styleClasses.get(index); } return null; } // package private for unit test purposes static final Map<String,Integer> styleClassMap = new HashMap<String,Integer>(64); static final List<StyleClass> styleClasses = new ArrayList<StyleClass>(); }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de