Searched refs:getters (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java84 Set<String> getters = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER);
87 getters.add(m.getName().substring(3));
92 // Now check that all the getters have a corresponding item in the
97 // Also track which items had corresponding getters, to make sure
102 if (getters.remove(key))
105 if (!getters.equals(new HashSet<String>(Arrays.asList(surplus)))) {
106 throw new Exception("Wrong getters: " + getters);
/openjdk7/jdk/src/share/classes/java/beans/
H A DEventHandler.java372 private Object applyGetters(Object target, String getters) { argument
373 if (getters == null || getters.equals("")) {
376 int firstDot = getters.indexOf('.');
378 firstDot = getters.length();
380 String first = getters.substring(0, firstDot);
381 String rest = getters.substring(Math.min(firstDot + 1, getters.length()));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointResponseMessageBuilder.java144 protected final ValueGetter[] getters; field in class:EndpointResponseMessageBuilder.Wrapped
152 getters = new ValueGetter[children.size()];
156 getters[i] = ValueGetter.get(p);
215 accessors[i].set(bean,getters[i].get(methodArgs[indices[i]]));
284 v = getters[i].get(returnValue);
286 v = getters[i].get(methodArgs[indices[i]]);
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DDefaultMXBeanMappingFactory.java116 * getters using one of various heuristics.</p>
462 final Method[] getters = new Method[nitems];
469 getters[i] = getter;
485 getters,
807 Method[] getters,
811 assert(itemNames.length == getters.length);
814 this.getters = getters;
815 this.getterMappings = new MXBeanMapping[getters.length];
816 for (int i = 0; i < getters
804 CompositeMapping(Class<?> targetClass, CompositeType compositeType, String[] itemNames, Method[] getters, MXBeanMappingFactory factory) argument
924 private final Method[] getters; field in class:DefaultMXBeanMappingFactory.CompositeMapping
949 applicable(Method[] getters) argument
980 applicable(Method[] getters) argument
1044 applicable(Method[] getters) argument
1079 applicable(Method[] getters) argument
1143 applicable(Method[] getters) argument
1371 applicable(Method[] getters) argument
[all...]
H A DPerInterface.java74 final M cm = getters.get(attribute);
96 if (getters.containsKey(attribute))
144 * jmx.invoke.getters property is set, and if so whether the method
147 * with code based on JMX RI 1.0 or 1.1 which allowed invoking getters
154 * A simpler way to implement the functionality would be to add the getters
155 * and setters to the operations map when jmx.invoke.getters is set.
177 GetPropertyAction act = new GetPropertyAction("jmx.invoke.getters");
197 methods = getters;
232 * Visitor that sets up the method maps (operations, getters, setters).
240 final Object old = getters
277 private final Map<String, M> getters = newMap(); field in class:PerInterface
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DBodyBuilder.java141 protected final ValueGetter[] getters; field in class:BodyBuilder.Wrapped
149 getters = new ValueGetter[children.size()];
153 getters[i] = getter.get(p);
207 accessors[i].set(bean,getters[i].get(methodArgs[indices[i]]));
274 Object arg = getters[i].get(methodArgs[indices[i]]);
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DBoundMethodHandle.java173 public final Object argL(int i) throws Throwable { return speciesData().getters[i].invokeBasic(this); }
174 public final int argI(int i) throws Throwable { return (int) speciesData().getters[i].invokeBasic(this); }
175 public final float argF(int i) throws Throwable { return (float) speciesData().getters[i].invokeBasic(this); }
176 public final double argD(int i) throws Throwable { return (double) speciesData().getters[i].invokeBasic(this); }
177 public final long argJ(int i) throws Throwable { return (long) speciesData().getters[i].invokeBasic(this); }
338 final MethodHandle[] getters; field in class:BoundMethodHandle.SpeciesData
358 MethodHandle mh = getters[i];
370 this.getters = new MethodHandle[types.length()];
373 this.getters = Factory.makeGetters(clazz, types, null);
382 Factory.makeGetters(clazz, types, this.getters);
[all...]
H A DLambdaForm.java392 * field getters would perform a cast on its input argument
796 assert(oldData.getters.length == newData.getters.length-1);
820 for (int j = 0; j < oldData.getters.length; j++) {
821 if (oldGetter == oldData.getters[j])
822 newGetter = newData.getters[j];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java924 // in the first step we accumulate getters and setters
926 Map<String,M> getters = new LinkedHashMap<String,M>();
931 collectGetterSetters(clazz, getters, setters);
939 Set<String> complete = new TreeSet<String>(getters.keySet());
942 resurrect(getters, complete);
947 M getter = getters.get(name);
996 getters.keySet().removeAll(complete);
1009 private void collectGetterSetters(C c, Map<String,M> getters, Map<String,M> setters) { argument
1016 collectGetterSetters(sc,getters,setters);
1021 boolean used = false; // if this method is added to getters o
[all...]

Completed in 69 milliseconds