Searched defs:property (Results 26 - 50 of 94) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/java/beans/
H A DDefaultPersistenceDelegate.java49 * that, while not nullary, simply requires some property values
75 * constructor whose arguments are the values of the property
78 * evaluating the property names in the order they are supplied.
90 * @param constructorPropertyNames The property names for the arguments of this constructor.
170 private Method findMethod(Class type, String property) { argument
171 if (property == null) {
174 PropertyDescriptor pd = getPropertyDescriptor(type, property);
176 throw new IllegalStateException("Could not find property by the name " + property);
180 throw new IllegalStateException("Could not find getter for the property "
404 getPropertyDescriptor(Class type, String property) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/marshaller/
H A DMessages.java38 public static String format( String property ) {
39 return format( property, null );
42 public static String format( String property, Object arg1 ) { argument
43 return format( property, new Object[]{arg1} );
46 public static String format( String property, Object arg1, Object arg2 ) { argument
47 return format( property, new Object[]{arg1,arg2} );
50 public static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
51 return format( property, new Object[]{arg1,arg2,arg3} );
57 static String format( String property, Object[] args ) { argument
58 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/unmarshaller/
H A DMessages.java38 public static String format( String property ) {
39 return format( property, null );
42 public static String format( String property, Object arg1 ) { argument
43 return format( property, new Object[]{arg1} );
46 public static String format( String property, Object arg1, Object arg2 ) { argument
47 return format( property, new Object[]{arg1,arg2} );
50 public static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
51 return format( property, new Object[]{arg1,arg2,arg3} );
57 public static String format( String property, Object[] args ) { argument
58 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DAttributeProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DListElementProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
46 * A JAXB property that constitutes a JAXB-bound bean.
56 * Resets the property value on the given object.
67 * used when this property is expected to print out an element
90 // * the context object to which this property ultimately belongs to.
91 // * a property will only belong to one grammar, but to reduce the memory footprint
98 * Gets the value of the property.
106 * Gets the Kind of property
117 * If this property is mapped to the specified element,
121 * null if the property i
[all...]
H A DValueProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DArrayERProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DArrayElementProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
63 * {@link Property} implementation for multi-value property that maps to an element.
176 * Serializes one item of the property.
H A DArrayReferenceNodeProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DPropertyImpl.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DSingleElementLeafProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DSingleElementNodeProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DSingleReferenceNodeProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
103 // recover by ignoring this property
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/
H A DStAXManager.java95 public boolean containsProperty(String property){ argument
96 return features.containsKey(property) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DMessages.java37 public static String format( String property, Object... args ) { argument
39 Messages.class.getName()).getString(property);
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest6194788.java27 * @summary Tests bound property in PropertyDescriptor/PropertyEditorSupport
48 private static void test(Class type, PropertyDescriptor property) { argument
50 boolean forward = pd.equals(property);
51 boolean backward = property.equals(pd);
59 throw new Error("could not find property: " + property.getName());
H A DTest4935607.java114 test(value, BeanUtils.getPropertyDescriptor(type, "property")); // NON-NLS: the property to check
119 private static void test(Class type, String property) { argument
121 test(Boolean.TRUE, BeanUtils.getPropertyDescriptor(type, property));
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestMethods.java46 private static final String NAME = "property";
72 public void firePropertyChange(String property, Object oldValue, Object newValue) { argument
77 super.firePropertyChange(property, oldValue, newValue);
81 public void firePropertyChange(String property, int oldValue, int newValue) { argument
86 super.firePropertyChange(property, oldValue, newValue);
90 public void firePropertyChange(String property, boolean oldValue, boolean newValue) { argument
95 super.firePropertyChange(property, oldValue, newValue);
108 public void fireIndexedPropertyChange(String property, int index, Object oldValue, Object newValue) { argument
113 super.fireIndexedPropertyChange(property, index, oldValue, newValue);
117 public void fireIndexedPropertyChange(String property, in argument
126 fireIndexedPropertyChange(String property, int index, boolean oldValue, boolean newValue) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXPropertyCache.java31 * Implements abstract X window property caching mechanism. The
80 public static boolean isCached(long window, XAtom property) { argument
83 return entryMap.containsKey(property);
89 public static PropertyCacheEntry getCacheEntry(long window, XAtom property) { argument
92 return entryMap.get(property);
98 public static void storeCache(PropertyCacheEntry entry, long window, XAtom property) { argument
104 entryMap.put(property, entry);
111 public static void clearCache(long window, XAtom property) { argument
114 entryMap.remove(property);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DXMLReaderManager.java49 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderManager
106 // instance of the class set in the 'org.xml.sax.driver' property
109 String factory = SecuritySupport.getSystemProperty(property);
196 * Get property value
206 * Set property.
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSetMetaData.java64 * @param property <code>true</code> if the column is automatically
69 void setAutoIncrement(int columnIndex, boolean property) throws SQLException; argument
76 * @param property <code>true</code> if the column is case sensitive;
81 void setCaseSensitive(int columnIndex, boolean property) throws SQLException; argument
88 * @param property <code>true</code> if the column can be used in a
93 void setSearchable(int columnIndex, boolean property) throws SQLException; argument
100 * @param property <code>true</code> if the column is a cash value;
105 void setCurrency(int columnIndex, boolean property) throws SQLException; argument
113 * @param property one of the following constants:
120 void setNullable(int columnIndex, int property) throw argument
132 setSigned(int columnIndex, boolean property) argument
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIState.java73 public void set(final Property property) { argument
74 derivedEncodedState = property.apply(derivedEncodedState);
87 public boolean is(Property property) { argument
88 return (byte)((derivedEncodedState & property.encoding.mask) >> property.encoding.shift) == property.ordinal;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DMessages.java37 static String format( String property, Object... args ) { argument
38 String text = ResourceBundle.getBundle(Messages.class.getPackage().getName() +".MessageBundle").getString(property);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPMessage.java405 * Associates the specified value with the specified property. If there was
406 * already a value associated with this property, the old value is
409 * The valid property names include
416 * Setting the property <code>WRITE_XML_DECLARATION</code> to <code>"true"</code>
420 * The property <code>CHARACTER_SET_ENCODING</code> defaults to the value
428 * @param property
429 * the property with which the specified value is to be
432 * the value to be associated with the specified property
434 * if the property name is not recognized.
437 public void setProperty(String property, Objec argument
453 getProperty(String property) argument
[all...]

Completed in 70 milliseconds

1234