Searched refs:Property (Results 1 - 25 of 41) sorted by relevance

12

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DProperty.java32 public class Property implements Serializable { class in inherits:Serializable
39 private Property() { method in class:Property
43 private Property(Property p) { method in class:Property
47 private Property(String name) { method in class:Property
51 public Property(String name, String value) { method in class:Property
71 if (!(o instanceof Property)) return false;
72 Property p2 = (Property)o;
H A DProperties.java39 public class Properties implements Serializable, Iterable<Property> {
55 for (Property prop : this) {
179 public Property selectSingle(PropertyMatcher matcher) {
188 return new Property(matcher.getName(), value);
227 Property p = t.getProperties().selectSingle(matcher);
243 Property p = t.getProperties().selectSingle(matcher);
292 public Iterator<Property> getProperties() {
297 for (Property p : properties) {
302 public void add(Property property) {
307 class PropertiesIterator implements Iterator<Property>, Iterabl
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DClientPropertyApplicator.java34 private final Map<String, Property<N>> properties = new HashMap<String, Property<N>>();
36 public ClientPropertyApplicator(final Property<N>... propertyList) {
37 for (final Property<N> p : propertyList) {
43 final Property<N> property = properties.get(propName);
83 public abstract static class Property<X> { class in class:ClientPropertyApplicator
86 public Property(final String name) { method in class:ClientPropertyApplicator.Property
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLProperties.java54 @Property(MessageContext.WSDL_SERVICE)
59 @Property(MessageContext.WSDL_PORT)
64 @Property(MessageContext.WSDL_INTERFACE)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DPropertiesSheet.java28 import com.sun.hotspot.igv.data.Property;
43 for (final Property p : properties) {
44 Node.Property<String> prop = new Node.Property<String>(String.class) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/
H A DMapping.java90 * Ths returned list includes {@link Property} defined not just
95 * Otherwise list of {@link Property}s. The order signifies
98 List<? extends Property> getWrapperStyleDrilldown();
H A DProperty.java47 public interface Property { interface
/openjdk7/jdk/test/java/rmi/server/RMIClassLoader/spi/
H A DProperty.java33 * @run main/othervm/policy=security.policy Property
36 public class Property { class
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBProperty.java28 import com.sun.tools.internal.xjc.api.Property;
38 * @see Property#name()
44 * @see Property#elementName()
49 * @see Property#rawName()
61 JAXBProperty( Property prop ) {
69 * @see Property#name()
88 * @see Property#elementName()
H A DJAXBMapping.java29 import com.sun.tools.internal.xjc.api.Property;
68 List<? extends Property> list = rawModel.getWrapperStyleDrilldown();
73 for( Property p : list )
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DBeanMappingImpl.java31 import com.sun.tools.internal.xjc.api.Property;
58 public List<Property> calcDrilldown() {
H A DAbstractMappingImpl.java35 import com.sun.tools.internal.xjc.api.Property;
67 private List<Property> drilldown = null;
83 public final List<? extends Property> getWrapperStyleDrilldown() {
91 protected abstract List<Property> calcDrilldown();
96 protected List<Property> buildDrilldown(CClassInfo typeBean) {
104 List<Property> result;
113 result = new ArrayList<Property>();
184 private Property createPropertyImpl(CPropertyInfo p, QName tagName) {
H A DPropertyImpl.java33 import com.sun.tools.internal.xjc.api.Property;
40 public /*for BSH*/ final class PropertyImpl implements Property {
H A DElementMappingImpl.java30 import com.sun.tools.internal.xjc.api.Property;
63 public final List<Property> calcDrilldown() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpResponseProperties.java49 @Property(MessageContext.HTTP_RESPONSE_HEADERS)
54 @Property(MessageContext.HTTP_RESPONSE_CODE)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DClassBeanInfoImpl.java54 import com.sun.xml.internal.bind.v2.runtime.property.Property;
76 public final Property<BeanT>[] properties;
81 private Property<? super BeanT> idProperty;
118 * {@link Property}s that need to receive {@link Property#serializeURIs(Object, XMLSerializer)} callback.
120 private /*final*/ Property<BeanT>[] uriProperties;
162 this.properties = new Property[ps.size()];
166 Property p = PropertyFactory.create(owner,info);
187 private void checkOverrideProperties(Property p) {
190 Property[] prop
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java69 @Property(value = {MessageContext.HTTP_REQUEST_HEADERS, Packet.INBOUND_TRANSPORT_HEADERS})
94 @Property({MessageContext.HTTP_RESPONSE_HEADERS,Packet.OUTBOUND_TRANSPORT_HEADERS})
110 @Property(MessageContext.HTTP_RESPONSE_CODE)
147 @Property(MessageContext.SERVLET_CONTEXT)
152 @Property(MessageContext.SERVLET_RESPONSE)
157 @Property(MessageContext.SERVLET_REQUEST)
176 @Property(MessageContext.HTTP_REQUEST_METHOD)
182 @Property(MessageContext.QUERY_STRING)
188 @Property(MessageContext.PATH_INFO)
193 @Property(JAXWSPropertie
[all...]
H A DServerConnectionImpl.java77 @Property(value = {MessageContext.HTTP_REQUEST_HEADERS, Packet.INBOUND_TRANSPORT_HEADERS})
101 @Property({MessageContext.HTTP_RESPONSE_HEADERS,Packet.OUTBOUND_TRANSPORT_HEADERS})
117 @Property(MessageContext.HTTP_RESPONSE_CODE)
235 @Property(MessageContext.HTTP_REQUEST_METHOD)
241 @Property(MessageContext.QUERY_STRING)
251 @Property(MessageContext.PATH_INFO)
262 @Property(JAXWSProperties.HTTP_EXCHANGE)
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/serialization/
H A DXMLWriter.java28 import com.sun.hotspot.igv.data.Property;
92 for (Property p : attributes) {
104 for (Property p : attributes) {
120 for (Property p : props) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DWsaPropertyBag.java70 @Property(JAXWSProperties.ADDRESSING_TO)
83 @Property(JAXWSProperties.ADDRESSING_FROM)
94 @Property(JAXWSProperties.ADDRESSING_ACTION)
108 @Property({JAXWSProperties.ADDRESSING_MESSAGEID,WsaServerTube.REQUEST_MESSAGE_ID})
/openjdk7/jdk/src/share/classes/javax/management/
H A DObjectName.java229 private static class Property { class in class:ObjectName
238 Property(int key_index, int key_length, int value_length) { method in class:ObjectName.Property
271 private static class PatternProperty extends Property {
343 static final private Property[] _Empty_property_array = new Property[0];
359 private transient Property[] _kp_array;
364 private transient Property[] _ca_array;
492 Property prop;
493 Map<String,Property> keys_map = new HashMap<String,Property>();
[all...]
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java111 static class Property { class in class:JRSUIConstants
116 Property(final PropertyEncoding encoding, final byte ordinal) { method in class:JRSUIConstants.Property
136 public static class Size extends Property {
156 public static class State extends Property {
182 public static class Direction extends Property {
212 public static class Orientation extends Property {
228 public static class AlignmentVertical extends Property {
246 public static class AlignmentHorizontal extends Property {
264 public static class SegmentPosition extends Property {
284 public static class ScrollBarPart extends Property {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/property/
H A DPropertyFactory.java43 * Create {@link Property} objects.
52 * Constructors of the {@link Property} implementation.
54 private static final Constructor<? extends Property>[] propImpls;
57 Class<? extends Property>[] implClasses = new Class[] {
84 * Creates/obtains a properly configured {@link Property}
87 public static Property create( JAXBContextImpl grammar, RuntimePropertyInfo info ) {
111 Constructor<? extends Property> c = propImpls[(isLeaf?0:6)+(isCollection?3:0)+kind.propertyIndex];
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DFindPanel.java29 import com.sun.hotspot.igv.data.Property;
70 for (Property p : prop) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DPropertySet.java85 public @interface Property { interface in class:PropertySet
102 * Map representing the Fields and Methods annotated with {@link Property}.
143 * This method parses a class for fields and methods with {@link Property}.
153 Property cp = f.getAnnotation(Property.class);
161 Property cp = m.getAnnotation(Property.class);
202 * One of the values in {@link Property} annotation on {@link #f}.
249 * One of the values in {@link Property} annotation on {@link #getter}.
339 * @see Property
[all...]

Completed in 80 milliseconds

12