Searched defs:style (Results 1 - 25 of 152) sorted by relevance

1234567

/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js4 * Prototype is freely distributable under the terms of an MIT-style license.
1143 return $(element).style.display != 'none';
1153 $(element).style.display = 'none';
1158 $(element).style.display = '';
1362 getStyle: function(element, style) {
1364 if (['float','cssFloat'].include(style))
1365 style = (typeof element.style.styleFloat != 'undefined' ? 'styleFloat' : 'cssFloat');
1366 style = style
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/
H A DOperation.java68 * Style used to physically represent the operation message style. This is either
69 * "rpc" style, "uri" style or "multipart" style. These styles are based on WSDL 2.0.
74 * Style used to physically represent the operation message style. This is either
75 * "rpc" style, "uri" style or "multipart" style. These styles are based on WSDL 2.0.
147 * Sets the operation style.
149 * @param operationStyle operation style
238 setInterfaceStyle(String style) argument
[all...]
H A DWSDLConverter.java233 String style) throws Exception {
234 if(RPC_STYLE.equals(style)) {
237 * namespace needs to be set in <soap:body> only for 'rpc' style.
459 String style = null;
473 * 5.6.3 Consistency of style Attribute :
475 * The style, "document" or "rpc", of an interaction is specified
483 if(style == null) {
484 style = getStyle(portTypeOperation);
485 if(RPC_STYLE.equals(style)) { // default style i
230 processElement( ElementExtensible elementExtensible, Message message, String style) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DComment.java60 Comment (String text) {_text = text; _style = style (_text);} // ctor
63 public void text (String string) {_text = string; _style = style (_text);}
68 /** Returns the comment style of a string. */
69 private int style (String text) method in class:Comment
81 } // style
140 /** Writes comment in JavaDoc-style to the specified print stream. */
166 /** Writes comment in c-block-style to the specified print stream. */
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutStyle.java48 * @param style the <code>LayoutStyle</code>, or <code>null</code>
51 public static void setInstance(LayoutStyle style) { argument
53 if (style == null) {
57 AppContext.getAppContext().put(LayoutStyle.class, style);
71 LayoutStyle style;
73 style = (LayoutStyle)AppContext.getAppContext().
76 if (style == null) {
79 return style;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DFontUIResource.java52 public FontUIResource(String name, int style, int size) { argument
53 super(name, style, size);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DDefaultSynthStyleFactory.java36 * Factory used for obtaining styles. Supports associating a style based on
64 * Maps from a List (BakedArrayList to be precise) to the merged style.
80 public synchronized void addStyle(DefaultSynthStyle style, argument
88 path, style, type));
92 path.toLowerCase(), style, type));
97 * Returns the style for the specified Component.
113 SynthStyle style = getCachedStyle(matches);
115 if (style == null) {
116 style = mergeStyles(matches);
118 if (style !
169 cacheStyle(List styles, SynthStyle style) argument
[all...]
H A DSynthColorChooserUI.java48 private SynthStyle style; field in class:SynthColorChooserUI
87 style = SynthLookAndFeel.updateStyle(context, this);
98 style.uninstallDefaults(context);
100 style = null;
132 SynthLookAndFeel.getRegion(c), style, state);
H A DSynthContext.java46 private SynthStyle style; field in class:SynthContext
56 Region region, SynthStyle style,
78 context.reset(component, region, style, state);
105 * @param style Style associated with the component
107 * @throws NullPointerException if component, region of style is null.
109 public SynthContext(JComponent component, Region region, SynthStyle style, argument
111 if (component == null || region == null || style == null) {
113 "You must supply a non-null component, region and style");
115 reset(component, region, style, state);
144 void setStyle(SynthStyle style) { argument
55 getContext(Class type, JComponent component, Region region, SynthStyle style, int state) argument
178 reset(JComponent component, Region region, SynthStyle style, int state) argument
[all...]
H A DSynthEditorPaneUI.java43 private SynthStyle style; field in class:SynthEditorPaneUI
85 style.uninstallDefaults(context);
87 style = null;
118 SynthStyle oldStyle = style;
120 style = SynthLookAndFeel.updateStyle(context, this);
122 if (style != oldStyle) {
143 SynthLookAndFeel.getRegion(c), style, state);
/openjdk7/jdk/src/share/classes/java/awt/im/
H A DInputMethodHighlight.java36 * text is selected; at the concrete level it specifies style attributes used
41 * If no concrete style is provided, a renderer should use
42 * {@link java.awt.Toolkit#mapInputMethodHighlight} to map to a concrete style.
109 * The variation is set to 0, the style to null.
122 * The style is set to null.
125 * @param variation The style variation for the text range
136 * The style attributes map provided must be unmodifiable.
140 * @param style the rendering style attributes for the text range, or null
147 Map<TextAttribute,?> style)
146 InputMethodHighlight(boolean selected, int state, int variation, Map<TextAttribute,?> style) argument
193 private Map style; field in class:InputMethodHighlight
[all...]
/openjdk7/jdk/src/share/classes/java/text/spi/
H A DDateFormatProvider.java50 * with the given formatting style for the specified locale.
51 * @param style the given formatting style. Either one of
57 * @exception IllegalArgumentException if <code>style</code> is invalid,
66 public abstract DateFormat getTimeInstance(int style, Locale locale); argument
70 * with the given formatting style for the specified locale.
71 * @param style the given formatting style. Either one of
77 * @exception IllegalArgumentException if <code>style</code> is invalid,
86 public abstract DateFormat getDateInstance(int style, Local argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/spi/
H A DTimeZoneNameProvider.java66 * @param style either {@link java.util.TimeZone#LONG TimeZone.LONG} or
71 * @exception IllegalArgumentException if <code>style</code> is invalid,
79 public abstract String getDisplayName(String ID, boolean daylight, int style, Locale locale); argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Dprefetch.hpp38 enum style { enum in class:Prefetch
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/soap/
H A DSOAPBinding.java43 protected Style style = Style.DOCUMENT; field in class:SOAPBinding
58 return style;
72 return style == Style.DOCUMENT && use == Use.LITERAL;
79 return style == Style.RPC && use == Use.LITERAL;
88 * &lt;soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/soap/
H A DSOAPBindingImpl.java46 this.style = sb.getStyle();
52 * @param style The style to set.
54 public void setStyle(Style style) { argument
55 this.style = style;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap/
H A DSOAPBinding.java46 public com.sun.xml.internal.ws.wsdl.writer.document.soap.SOAPBinding style(String value); method in interface:SOAPBinding
H A DSOAPOperation.java46 public com.sun.xml.internal.ws.wsdl.writer.document.soap.SOAPOperation style(String value); method in interface:SOAPOperation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap12/
H A DSOAPBinding.java46 public com.sun.xml.internal.ws.wsdl.writer.document.soap12.SOAPBinding style(String value); method in interface:SOAPBinding
H A DSOAPOperation.java46 public com.sun.xml.internal.ws.wsdl.writer.document.soap12.SOAPOperation style(String value); method in interface:SOAPOperation
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Font.h31 jfieldID style; member in struct:FontIDs
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFontPeer.java34 public WFontPeer(String name, int style){ argument
35 super(name, style);
37 textComponentFontName = ((WFontConfiguration) fontConfig).getTextComponentFontName(familyName, style);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DStyleAssociation.java36 * StyleAssociation is used to lookup a style for a particular
43 * The style
67 String text, SynthStyle style)
69 return createStyleAssociation(text, style, 0);
77 String text, SynthStyle style, int id)
79 return new StyleAssociation(text, style, id);
83 private StyleAssociation(String text, SynthStyle style, int id) argument
85 _style = style;
126 * Returns the style this association is mapped to.
128 * @return the style thi
66 createStyleAssociation( String text, SynthStyle style) argument
76 createStyleAssociation( String text, SynthStyle style, int id) argument
[all...]
/openjdk7/jdk/test/java/text/Format/DateFormat/
H A DBug6683975.java54 private static void test(int style) { argument
55 DateFormat df_th = DateFormat.getDateTimeInstance(style, style, th);
56 DateFormat df_th_TH = DateFormat.getDateTimeInstance(style, style, th_TH);
62 System.err.println("Error: Pattern for th locale should be the same as pattern for th_TH locale. (" + stylePattern[style] + ")");
69 if (!expected_th[style].equals(str_th)) {
71 System.err.println("Error: Formatted date in th locale is incorrect in " + stylePattern[style] + " pattern.");
72 System.err.println("\tExpected: " + expected_th[style]);
77 if (!expected_th_TH[style]
[all...]
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DDateFormatProviderImpl.java68 public DateFormat getDateInstance(int style, Locale locale) { argument
71 return new FooDateFormat(datePattern[style]+dialect[i], locale);
77 public DateFormat getTimeInstance(int style, Locale locale) { argument
80 return new FooDateFormat(timePattern[style]+dialect[i], locale);

Completed in 441 milliseconds

1234567