Searched defs:attr (Results 1 - 25 of 151) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleAttributeSequence.java68 * @param attr the <code>AttributeSet</code> shared by this text span
72 public AccessibleAttributeSequence(int start, int end, AttributeSet attr) { argument
75 attributes = attr;
/openjdk7/jdk/src/share/classes/javax/management/
H A DQualifiedAttributeValueExp.java61 * attribute, named attr with class name className.
63 public QualifiedAttributeValueExp(String className, String attr) { argument
64 super(attr);
H A DAttributeValueExp.java35 * Instances of this class are usually obtained using {@link Query#attr(String)
36 * Query.attr}.</p>
52 private String attr; field in class:AttributeValueExp
65 * specified object attribute, named attr.
67 * @param attr the name of the attribute whose value is the value
70 public AttributeValueExp(String attr) { argument
71 this.attr = attr;
80 return attr;
123 return attr;
[all...]
H A DClassAttributeValueExp.java78 private String attr; field in class:ClassAttributeValueExp
84 /* Compatibility: we have an attr field that we must hold on to
87 attr = "Class";
118 return attr;
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DModificationItem.java59 private Attribute attr; field in class:ModificationItem
67 * @param attr The non-null attribute to use for modification.
68 * @exception IllegalArgumentException If attr is null, or if mod_op is
71 public ModificationItem(int mod_op, Attribute attr) { argument
76 if (attr == null)
80 this.attr = attr;
104 return attr;
118 return ("Add attribute: " + attr.toString());
121 return ("Replace attribute: " + attr
[all...]
H A DAttributes.java144 * @param attr The non-null attribute to add.
147 * attr's identifier is ignored.
148 * @return The Attribute with the same ID as attr that was previous
153 Attribute put(Attribute attr); argument
/openjdk7/jdk/test/java/text/Bidi/
H A DBug7042148.java64 private static void test(String text, Map attr, int dirFlag) { argument
77 AttributedString as = new AttributedString(text, attr);
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrintJobAttributeException.java35 private Attribute attr; field in class:PrintJobAttributeException
40 attr = attrval;
54 if (attr == null) {
57 Attribute [] attrs = { attr};
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDocumentFilter.java93 * @param attr the attributes to associate with the inserted
99 AttributeSet attr) throws BadLocationException {
100 fb.insertString(offset, string, attr);
160 * @param attr the attributes to associate with the inserted
166 AttributeSet attr) throws
98 insertString(FilterBypass fb, int offset, String string, AttributeSet attr) argument
165 insertString(int offset, String string, AttributeSet attr) argument
H A DAttributeSet.java109 * @param attr an attribute set
112 public boolean isEqual(AttributeSet attr); argument
H A DPlainDocument.java173 * @param attr the set of attributes for the inserted text
175 protected void insertUpdate(DefaultDocumentEvent chng, AttributeSet attr) { argument
225 if (Utilities.isComposedTextAttributeDefined(attr)) {
226 insertComposedTextUpdate(chng, attr);
231 super.insertUpdate(chng, attr);
290 private void insertComposedTextUpdate(DefaultDocumentEvent chng, AttributeSet attr) { argument
305 added.addElement(createLeafElement(abelem[0], attr, offset, offset+length));
H A DStyledDocument.java151 * @param attr the set of attributes
154 public Color getForeground(AttributeSet attr); argument
161 * @param attr the set of attributes
164 public Color getBackground(AttributeSet attr); argument
172 * @param attr the set of attributes
175 public Font getFont(AttributeSet attr); argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DObjectView.java87 AttributeSet attr = getElement().getAttributes();
88 String classname = (String) attr.getAttribute(HTML.Attribute.CLASSID);
95 setParameters(comp, attr);
145 private void setParameters(Component comp, AttributeSet attr) { argument
157 Object v = attr.getAttribute(props[i].getName());
H A DOption.java52 * @param attr the attributes associated with the
56 public Option(AttributeSet attr) { argument
57 this.attr = attr.copyAttributes();
58 selected = (attr.getAttribute(HTML.Attribute.SELECTED) != null);
79 return attr;
110 String value = (String) attr.getAttribute(HTML.Attribute.VALUE);
119 private AttributeSet attr; field in class:Option
H A DInlineView.java48 attr = sheet.getViewAttributes(this);
95 attr = sheet.getViewAttributes(this);
105 return attr;
224 private AttributeSet attr; field in class:InlineView
H A DParagraphView.java87 if (attr == null) {
89 attr = sheet.getViewAttributes(this);
91 return attr;
101 attr = sheet.getViewAttributes(this);
102 painter = sheet.getBoxPainter(attr);
103 if (attr != null) {
109 Object o = attr.getAttribute(CSS.Attribute.TEXT_ALIGN);
124 cssWidth = (CSS.LengthValue)attr.getAttribute(
126 cssHeight = (CSS.LengthValue)attr.getAttribute(
290 private AttributeSet attr; field in class:ParagraphView
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DCharacterIteratorFieldDelegate.java56 public void formatted(Format.Field attr, Object value, int start, int end, argument
70 as.addAttribute(attr, value, aStart, Math.min(
88 string.addAttribute(attr, value);
95 public void formatted(int fieldID, Format.Field attr, Object value, argument
97 formatted(attr, value, start, end, buffer);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarEntry.java38 Attributes attr; field in class:JarEntry
73 this.attr = je.attr;
86 return attr;
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreatorVC10.java19 public FileVisitResult visitFile(Path file, BasicFileAttributes attr) { argument
H A DFileTreeCreatorVC7.java19 public FileVisitResult visitFile(Path file, BasicFileAttributes attr) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFieldVisitor.java84 * @param attr an attribute.
86 void visitAttribute(Attribute attr); argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS10Attribute.java72 PKCS9Attribute attr = new PKCS9Attribute(derVal);
73 this.attributeId = attr.getOID();
74 this.attributeValue = attr.getValue();
94 * @param attr the PKCS9Attribute to create from.
96 public PKCS10Attribute(PKCS9Attribute attr) { argument
97 this.attributeId = attr.getOID();
98 this.attributeValue = attr.getValue();
111 PKCS9Attribute attr = new PKCS9Attribute(attributeId, attributeValue);
112 attr.derEncode(out);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/helper/
H A DC14nHelper.java97 * @param attr
100 public static void assertNotRelativeNS(Attr attr) argument
103 if (attr == null) {
107 String nodeAttrName = attr.getNodeName();
112 if (namespaceIsRelative(attr)) {
113 String parentName = attr.getOwnerElement().getTagName();
114 String attrValue = attr.getValue();
/openjdk7/jdk/test/java/nio/file/attribute/UserDefinedFileAttributeView/
H A DBasic.java71 static boolean hasAttribute(UserDefinedFileAttributeView view, String attr) argument
/openjdk7/jaxp/src/com/sun/xml/internal/stream/events/
H A DEndElementEvent.java103 void addNamespace(Namespace attr){ argument
104 if(attr != null){
105 fNamespaces.add(attr);

Completed in 116 milliseconds

1234567