Searched defs:side (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DForkingFilter.java43 * The side handler receives SAX events before the next handler in the filter chain does.
52 private ContentHandler side; field in class:ForkingFilter
55 * The depth of the current element that the {@link #side} handler
77 return side;
98 side = null;
112 if(side!=null)
113 side.startPrefixMapping(prefix,uri);
122 if(side!=null)
123 side.endPrefixMapping(prefix);
131 if(side!
141 startForking(String uri, String localName, String qName, Attributes atts, ContentHandler side) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DTeeXMLDocumentFilterImpl.java44 * This component receives events after the "side" handler
52 private XMLDocumentHandler side; field in class:TeeXMLDocumentFilterImpl
60 return side;
63 public void setSide(XMLDocumentHandler side) { argument
64 this.side = side;
90 side.characters(text, augs);
95 side.comment(text, augs);
101 side.doctypeDecl(rootElement, publicId, systemId, augs);
106 side
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DTeeXMLDocumentFilterImpl.java84 * This component receives events after the "side" handler
92 private XMLDocumentHandler side; field in class:TeeXMLDocumentFilterImpl
102 return side;
105 public void setSide(XMLDocumentHandler side) { argument
106 this.side = side;
131 side.characters(text, augs);
136 side.comment(text, augs);
142 side.doctypeDecl(rootElement, publicId, systemId, augs);
147 side
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSSBorder.java94 * Return the border color for the given side.
96 private Color getBorderColor(int side) { argument
97 Object o = attrs.getAttribute(ATTRIBUTES[COLOR][side]);
114 * Return the border width for the given side.
116 private int getBorderWidth(int side) { argument
119 ATTRIBUTES[STYLE][side]);
124 ATTRIBUTES[WIDTH][side]);
145 * Return the border style for the given side.
147 private Value getBorderStyle(int side) { argument
149 (BorderStyle) attrs.getAttribute(ATTRIBUTES[STYLE][side]);
160 getBorderShape(int side) argument
176 getBorderPainter(int side) argument
266 paint(Polygon shape, Graphics g, Color color, int side) argument
273 paint(Polygon shape, Graphics g, Color color, int side) argument
282 paint(Polygon shape, Graphics g, Color color, int side) argument
326 paint(Polygon shape, Graphics g, Color color, int side) argument
345 paint(Polygon shape, Graphics g, Color color, int side) argument
383 paint(Polygon shape, Graphics g, Color color, int side) argument
405 paint(Polygon shape, Graphics g, Color color, int side) argument
[all...]
H A DStyleSheet.java1807 * Fetches the inset needed on a given side to
1810 * @param side The size of the box to fetch the
1818 public float getInset(int side, View v) { argument
1821 switch(side) {
1845 throw new IllegalArgumentException("Invalid side: " + side);
1962 * @param side The horizontal side to fetch margin for
1969 float getOrientationMargin(HorizontalMargin side, float cssMargin, argument
1974 switch (side) {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java162 static PositionType SwingOrientationConstantToGTK(int side) { argument
163 switch (side) {
173 assert false : "Unknown orientation: " + side;

Completed in 76 milliseconds