Searched defs:property (Results 1 - 25 of 94) sorted by relevance

1234

/openjdk7/jdk/test/java/beans/XMLEncoder/4741757/
H A DTestFieldAccess.java37 * The name of this field is the same as the name of property.
41 private int property; field in class:TestFieldAccess
44 this.property = value;
48 return this.property;
H A DTestStackOverflow.java37 * The name of this field is the same as the name of property.
41 private int property; field in class:TestStackOverflow
44 this.property = value;
48 return this.property;
54 return test.property == this.property;
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4984912.java27 * @summary Tests property descriptors without getter and setter
47 private int property; field in class:Test4984912.SimpleBean
50 return this.property;
53 public void setProperty(int property) { argument
54 this.property = property;
61 PropertyDescriptor pdProperty = new PropertyDescriptor("property", SimpleBean.class, "getProperty", "setProperty");
/openjdk7/jdk/test/lib/testlibrary/jdk/testlibrary/
H A DJdkFinder.java33 private static String getExecutable(String executable, String property) { argument
34 String binPath = System.getProperty(property);
37 "System property '" + property + "' not set");
47 * property.
59 * property. Depending on value of {@code stableJdk} the method will look for
62 * set this property using '-Dtest.jdk=/path/to/jdk'.
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptionProperties.java75 * @param property.
77 void addEncryptionProperty(EncryptionProperty property); argument
82 * @param property.
84 void removeEncryptionProperty(EncryptionProperty property); argument
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DXMLReaderFactory.java85 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderFactory
96 * <li>If the system property <code>org.xml.sax.driver</code>
111 * property will often be usable.) </li>
121 * setting a good value for that property ensures that calls to this
138 // 1. try the JVM-instance-wide system property
140 className = ss.getSystemProperty(property);
148 String service = "META-INF/services/" + property;
198 + "is system property org.xml.sax.driver set?");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/bindinfo/
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/com/sun/tools/internal/xjc/reader/xmlschema/parser/
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/com/sun/tools/internal/xjc/util/
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/com/sun/xml/internal/bind/v2/runtime/property/
H A DArrayElementLeafProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DArrayElementNodeProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DMessages.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DPropertyFactory.java26 package com.sun.xml.internal.bind.v2.runtime.property;
72 null, // map is always a single property (Map doesn't implement Collection)
H A DStructureLoaderBuilder.java26 package com.sun.xml.internal.bind.v2.runtime.property;
48 * by this property.
H A DTagAndType.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DUnmarshallerChain.java26 package com.sun.xml.internal.bind.v2.runtime.property;
H A DArrayProperty.java26 package com.sun.xml.internal.bind.v2.runtime.property;
63 // mutli-value property can't be ID
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/util/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jdk/test/java/rmi/transport/checkFQDN/
H A DCheckFQDN.java44 * property.
51 * property even if set java.rmi.server.useLocalHostname is true.
102 * Spawn a vm and feed it a property which sets the client's rmi
105 public static void testProperty(String property, argument
112 if (!property.equals("")) {
119 propOption + property +
126 propertyBeingTested=property;
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DObjectElementHandler.java42 * <dt>property
43 * <dd>the property name
45 * <dd>the property index
62 private String property; field in class:ObjectElementHandler
73 * <dt>property
74 * <dd>the property name
76 * <dd>the property index
97 } else if (name.equals("property")) { // NON-NLS: the attribute name
98 this.property = value;
152 } else if (this.property !
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
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/bind/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/helpers/
H A DMessages.java36 static String format( String property ) {
37 return format( property, null );
40 static String format( String property, Object arg1 ) { argument
41 return format( property, new Object[]{arg1} );
44 static String format( String property, Object arg1, Object arg2 ) { argument
45 return format( property, new Object[]{arg1,arg2} );
48 static String format( String property, Object arg1, Object arg2, Object arg3 ) { argument
49 return format( property, new Object[]{arg1,arg2,arg3} );
55 static String format( String property, Object[] args ) { argument
56 String text = ResourceBundle.getBundle(Messages.class.getName()).getString(property);
[all...]
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTestMethods.java44 private static final String NAME = "property";
67 public void fireVetoableChange(String property, Object oldValue, Object newValue) throws PropertyVetoException { argument
72 super.fireVetoableChange(property, oldValue, newValue);
76 public void fireVetoableChange(String property, int oldValue, int newValue) throws PropertyVetoException { argument
81 super.fireVetoableChange(property, oldValue, newValue);
85 public void fireVetoableChange(String property, boolean oldValue, boolean newValue) throws PropertyVetoException { argument
90 super.fireVetoableChange(property, oldValue, newValue);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DPropertyManager.java39 * object with the property taken from the object passed.
96 * 1. We are not exposing Xerces namespace property. Application should configure namespace through
97 * Stax specific property.
150 public boolean containsProperty(String property){ argument
151 return supportedProps.containsKey(property) ;
154 public Object getProperty(String property){ argument
155 return supportedProps.get(property);
158 public void setProperty(String property, Object value){ argument
160 if(property == XMLInputFactory.IS_NAMESPACE_AWARE || property
[all...]

Completed in 97 milliseconds

1234