Searched defs:set (Results 1 - 23 of 23) sorted by relevance

/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DWSContainerResolver.java68 public static void set(ServiceReferenceDescriptor ref) { method in class:WSContainerResolver
69 refs.set(ref);
73 refs.set(null);
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DACLSingletonProvider.java110 throw new IllegalStateException("Singleton not set for " + acl);
120 * class loader is always set as application class loader. In GlassFish,
122 * context class loader is set depending on which module is handling
180 public void set(T object) method in class:ACLSingletonProvider.ACLSingleton
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/
H A DUsernamePasswordStore.java56 * When set to true, scenario #1 above applies and the username/password
58 * When set to false, scenario #2 above applies and the username/password
116 public static void set(String username, char[] password) { method in class:UsernamePasswordStore
118 localUpc.set(new UsernamePasswordStore(username, password));
132 localUpc.set(null);
146 localUpc.set(null);
153 * @return The username set previously or null if not set
167 * @return The password set previously or null if not set
[all...]
/glassfish-3.1.2/web/gui-plugin-common/src/main/java/org/glassfish/web/plugin/common/
H A DSetWebContextParamCommand.java60 @Service(name="set-web-context-param")
134 set(newParam, paramName, paramValue, description, ignoreDescriptorItem);
154 set(param, paramName, paramValue, description, ignoreDescriptorItem);
169 set(cp, cp.getParamName(), paramValue, description, ignoreDescriptorItem);
175 private void set(final ContextParam param, method in class:SetWebContextParamCommand
H A DSetWebEnvEntryCommand.java62 @Service(name="set-web-env-entry")
133 "The set-web-env-entry command for a new setting requires either the --value option or the --ignoreDescriptorItem option.");
153 set(envEntry, name, value, envEntryType, description, ignoreDescriptorItem);
171 set(envEntry, name, value, envEntryType, description, ignoreDescriptorItem);
186 set(ee, ee.getEnvEntryName(), value, envEntryType, description, ignoreDescriptorItem);
192 private void set(final EnvEntry envEntry, method in class:SetWebEnvEntryCommand
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DSetCommand.java77 @Service(name = "set")
80 @I18n("set")
119 fail(context, localStrings.getLocalString("admin.set.invalid.logservice.command", "For setting log levels/attributes use set-log-levels/set-log-attributes command."));
123 if (!set(context, value))
128 private boolean set(AdminCommandContext context, String nameval) { method in class:SetCommand
133 fail(context, localStrings.getLocalString("admin.set.invalid.namevalue", "Invalid name value pair {0}. Missing expected equal sign.", nameval));
145 fail(context, localStrings.getLocalString("admin.set.invalid.attributename", "Invalid attribute name {0}", target));
152 fail(context, localStrings.getLocalString("admin.set
[all...]
/glassfish-3.1.2/common/amx-config/src/main/java/org/glassfish/admin/amx/intf/config/grizzly/
H A DTransport.java53 public void set(String val); method in interface:Transport
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DSetUtil.java69 final Set<T> set,
74 set.add(item);
87 final HashSet<T> set = new HashSet<T>();
89 set.addAll(c);
91 return (set);
99 final Set<T> set = new HashSet<T>();
100 set.add(item);
102 return (set);
111 final HashSet<T> set = new HashSet<T>();
113 set
68 addArray( final Set<T> set, final T[] array) argument
[all...]
/glassfish-3.1.2/tests/embedded/maven-plugin/websockets/src/main/webapp/javascripts/
H A Dmoo.fx.js101 set: function(to){
108 return this.set(0);
H A Dprototype.js1157 set: function(className) {
1163 this.set(this.toArray().concat(classNameToAdd).join(' '));
1168 this.set(this.select(function(className) {
1584 // set to true if needed, warning: firefox performance problems
1750 // set position
/glassfish-3.1.2/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/pe/
H A DPEDomainConfigValidator.java205 * Get next entry from iterator whose value is a set of
223 * Print the given key and set onto the given string
224 * buffer. Note that the set is considered to contain more than
233 * Print the given set on the given string buffer
235 private final void printSet(final StringBuffer sb, final Set set){ argument
238 for (Iterator it = set.iterator(); it.hasNext(); ){
/glassfish-3.1.2/admingui/common/src/main/resources/js/
H A Dgadget.js157 this.set =
159 // invoke Ajax to set preference
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbc/
H A DNameMapper.java150 // puts a value in a set as long as the object is not null
151 private void safeAdd (Set set, Object value) argument
153 if ((value != null) && (set != null))
154 set.add(value);
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sco/
H A DArrayList.java154 public Object set(int index, Object element) { method in class:ArrayList
174 Object o = super.set(index, element);
H A DVector.java146 * @param obj what the component is to be set to.
355 public synchronized Object set(int index, Object element) { method in class:Vector
374 Object o = super.set(index, element);
/glassfish-3.1.2/security/javax.security.jacc/src/main/java/javax/security/jacc/
H A DHttpMethodSpec.java129 BitSet set = new BitSet();
130 rvalue = getStandardSpec(actions,set);
132 if (!set.isEmpty()) {
133 rvalue = new HttpMethodSpec(rvalue,set);
148 BitSet set = new BitSet();
155 setExtensionBit(methods[i],set);
159 if (set.isEmpty()) {
162 rvalue = new HttpMethodSpec(specArray[map],set);
287 private HttpMethodSpec(HttpMethodSpec spec, BitSet set) argument
292 extensionSet = set
296 setExtensionBit(String method, BitSet set) argument
322 getStandardSpec(String actions, BitSet set) argument
346 makeMethodSet(String actions, BitSet set) argument
383 getExtensionActions(String standardActions, int map, BitSet set) argument
[all...]
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DCLICommand.java195 * ProgramOptions and Environment are injected. name is set here.
560 * If the program options haven't already been set, parse them
664 * The prepare method must ensure that the commandModel field is set.
674 * we set options and operands as if "--help" had been specified.
688 options.set("help", "true");
787 // if option isn't set, prompt for it (if interactive)
794 options.set(opt.getName(), val);
796 // if it's still not set, that's an error
858 options.set("DEFAULT", operands);
860 // if command has a "terse" option, set i
1157 file2Set(String file, Set<String> set) argument
[all...]
/glassfish-3.1.2/admingui/war/src/main/webapp/resources/yui/
H A Delement-min.js7 YAHOO.util.Attribute=function(B,A){if(A){this.owner=A;this.configure(B,true);}};YAHOO.util.Attribute.prototype={name:undefined,value:null,owner:null,readOnly:false,writeOnce:false,_initialConfig:null,_written:false,method:null,setter:null,getter:null,validator:null,getValue:function(){var A=this.value;if(this.getter){A=this.getter.call(this.owner,this.name);}return A;},setValue:function(F,B){var E,A=this.owner,C=this.name;var D={type:C,prevValue:this.getValue(),newValue:F};if(this.readOnly||(this.writeOnce&&this._written)){return false;}if(this.validator&&!this.validator.call(A,F)){return false;}if(!B){E=A.fireBeforeChangeEvent(D);if(E===false){return false;}}if(this.setter){F=this.setter.call(A,F,this.name);if(F===undefined){}}if(this.method){this.method.call(A,F,this.name);}this.value=F;this._written=true;D.type=C;if(!B){this.owner.fireChangeEvent(D);}return true;},configure:function(B,C){B=B||{};if(C){this._written=false;}this._initialConfig=this._initialConfig||{};for(var A in B){if(B.hasOwnProperty(A)){this[A]=B[A];if(C){this._initialConfig[A]=B[A];}}}},resetValue:function(){return this.setValue(this._initialConfig.value);},resetConfig:function(){this.configure(this._initialConfig,true);},refresh:function(A){this.setValue(this.value,A);}};(function(){var A=YAHOO.util.Lang;YAHOO.util.AttributeProvider=function(){};YAHOO.util.AttributeProvider.prototype={_configs:null,get:function(C){this._configs=this._configs||{};var B=this._configs[C];if(!B||!this._configs.hasOwnProperty(C)){return null;}return B.getValue();},set:function(D,E,B){this._configs=this._configs||{};var C=this._configs[D];if(!C){return false;}return C.setValue(E,B);},getAttributeKeys:function(){this._configs=this._configs;var C=[],B;for(B in this._configs){if(A.hasOwnProperty(this._configs,B)&&!A.isUndefined(this._configs[B])){C[C.length]=B;}}return C;},setAttributes:function(D,B){for(var C in D){if(A.hasOwnProperty(D,C)){this.set(C,D[C],B);}}},resetValue:function(C,B){this._configs=this._configs||{};if(this._configs[C]){this.set(C,this._configs[C]._initialConfig.value,B);return true;}return false;},refresh:function(E,C){this._configs=this._configs||{};var F=this._configs;E=((A.isString(E))?[E]:E)||this.getAttributeKeys();for(var D=0,B=E.length;D<B;++D){if(F.hasOwnProperty(E[D])){this._configs[E[D]].refresh(C);}}},register:function(B,C){this.setAttributeConfig(B,C);},getAttributeConfig:function(C){this._configs=this._configs||{};var B=this._configs[C]||{};var D={};for(C in B){if(A.hasOwnProperty(B,C)){D[C]=B[C];}}return D;},setAttributeConfig:function(B,C,D){this._configs=this._configs||{};C=C||{};if(!this._configs[B]){C.name=B;this._configs[B]=this.createAttribute(C);}else{this._configs[B].configure(C,D);}},configureAttribute:function(B,C,D){this.setAttributeConfig(B,C,D);},resetAttributeConfig:function(B){this._configs=this._configs||{};this._configs[B].resetConfig();},subscribe:function(B,C){this._events=this._events||{};if(!(B in this._events)){this._events[B]=this.createEvent(B);}YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){this.subscribe.apply(this,arguments);},addListener:function(){this.subscribe.apply(this,arguments);},fireBeforeChangeEvent:function(C){var B="before";B+=C.type.charAt(0).toUpperCase()+C.type.substr(1)+"Change";C.type=B;return this.fireEvent(C.type,C);},fireChangeEvent:function(B){B.type+="Change";return this.fireEvent(B.type,B);},createAttribute:function(B){return new YAHOO.util.Attribute(B,this);}};YAHOO.augment(YAHOO.util.AttributeProvider,YAHOO.util.EventProvider);})();(function(){var B=YAHOO.util.Dom,C=YAHOO.util.AttributeProvider;var A=function(D,E){this.init.apply(this,arguments);};A.DOM_EVENTS={"click":true,"dblclick":true,"keydown":true,"keypress":true,"keyup":true,"mousedown":true,"mousemove":true,"mouseout":true,"mouseover":true,"mouseup":true,"focus":true,"blur":true,"submit":true,"change":true};A.prototype={DOM_EVENTS:null,DEFAULT_HTML_SETTER:function(F,D){var E=this.get("element");if(E){E[D]=F;}},DEFAULT_HTML_GETTER:function(D){var E=this.get("element"),F;if(E){F=E[D];}return F;},appendChild:function(D){D=D.get?D.get("element"):D;return this.get("element").appendChild(D);},getElementsByTagName:function(D){return this.get("element").getElementsByTagName(D);},hasChildNodes:function(){return this.get("element").hasChildNodes();},insertBefore:function(D,E){D=D.get?D.get("element"):D;E=(E&&E.get)?E.get("element"):E;return this.get("element").insertBefore(D,E);},removeChild:function(D){D=D.get?D.get("element"):D;return this.get("element").removeChild(D);},replaceChild:function(D,E){D=D.get?D.get("element"):D;E=E.get?E.get("element"):E;return this.get("element").replaceChild(D,E);},initAttributes:function(D){},addListener:function(H,G,I,F){var E=this.get("element")||this.get("id");F=F||this;var D=this;if(!this._events[H]){if(E&&this.DOM_EVENTS[H]){YAHOO.util.Event.addListener(E,H,function(J){if(J.srcElement&&!J.target){J.target=J.srcElement;}D.fireEvent(H,J);},I,F);}this.createEvent(H,this);}return YAHOO.util.EventProvider.prototype.subscribe.apply(this,arguments);},on:function(){return this.addListener.apply(this,arguments);},subscribe:function(){return this.addListener.apply(this,arguments);},removeListener:function(E,D){return this.unsubscribe.apply(this,arguments);},addClass:function(D){B.addClass(this.get("element"),D);},getElementsByClassName:function(E,D){return B.getElementsByClassName(E,D,this.get("element"));},hasClass:function(D){return B.hasClass(this.get("element"),D);},removeClass:function(D){return B.removeClass(this.get("element"),D);},replaceClass:function(E,D){return B.replaceClass(this.get("element"),E,D);},setStyle:function(E,D){return B.setStyle(this.get("element"),E,D);},getStyle:function(D){return B.getStyle(this.get("element"),D);},fireQueue:function(){var E=this._queue;for(var F=0,D=E.length;F<D;++F){this[E[F][0]].apply(this,E[F][1]);}},appendTo:function(E,F){E=(E.get)?E.get("element"):B.get(E);this.fireEvent("beforeAppendTo",{type:"beforeAppendTo",target:E});
8 F=(F&&F.get)?F.get("element"):B.get(F);var D=this.get("element");if(!D){return false;}if(!E){return false;}if(D.parent!=E){if(F){E.insertBefore(D,F);}else{E.appendChild(D);}}this.fireEvent("appendTo",{type:"appendTo",target:E});return D;},get:function(D){var F=this._configs||{},E=F.element;if(E&&!F[D]&&!YAHOO.lang.isUndefined(E.value[D])){this._setHTMLAttrConfig(D);}return C.prototype.get.call(this,D);},setAttributes:function(J,G){var E={},H=this._configOrder;for(var I=0,D=H.length;I<D;++I){if(J[H[I]]!==undefined){E[H[I]]=true;this.set(H[I],J[H[I]],G);}}for(var F in J){if(J.hasOwnProperty(F)&&!E[F]){this.set(F,J[F],G);}}},set:function(E,G,D){var F=this.get("element");if(!F){this._queue[this._queue.length]=["set",arguments];if(this._configs[E]){this._configs[E].value=G;}return;}if(!this._configs[E]&&!YAHOO.lang.isUndefined(F[E])){this._setHTMLAttrConfig(E);}return C.prototype.set.apply(this,arguments);},setAttributeConfig:function(D,E,F){this._configOrder.push(D);C.prototype.s (…)
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/io/
H A DFileUtils.java536 * Return a set of all the files (File objects) under the directory specified, with
565 private static void recursiveGetFilesUnder(File relativizingRoot, File directory, FilenameFilter filenameFilter, Set set, boolean returnDirectories) { argument
569 recursiveGetFilesUnder(relativizingRoot, files[i], filenameFilter, set, returnDirectories);
572 set.add(relativize(relativizingRoot, files[i]));
574 set.add(files[i]);
579 set.add(relativize(relativizingRoot, files[i]));
581 set.add(files[i]);
/glassfish-3.1.2/tests/quicklook/web/jruby/helloapp/public/javascripts/
H A Dprototype.js1018 set: function(key, value) {
1059 result.set(pair.key, pair.value);
2152 // set position
4164 // set to true if needed, warning: firefox performance problems
4297 set: function(className) {
4303 this.set($A(this).concat(classNameToAdd).join(' '));
4308 this.set($A(this).without(classNameToRemove).join(' '));
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DAppClientContainer.java125 * it can set optional
183 * Public methods on the Builder interfaces which set configuration information return the
324 clientMainClassSetting = ClientMainClassSetting.set(client.getMainClass());
356 * important - for example, to set up message destination refs correctly.
482 edt.set(Thread.currentThread());
575 * Records how the main class has been set - by name or by class - and
586 static ClientMainClassSetting set(final String name) { method in class:AppClientContainer.ClientMainClassSetting
592 static ClientMainClassSetting set(final Class cl) { method in class:AppClientContainer.ClientMainClassSetting
607 throw new IllegalStateException("neither client main class nor its class name has been set");
709 clientMainClassSetting = ClientMainClassSetting.set(clientMainClassNam
[all...]
/glassfish-3.1.2/tests/community/web/jruby/helloapp/public/javascripts/
H A Dprototype.js1724 set: function(className) {
1730 this.set($A(this).concat(classNameToAdd).join(' '));
1735 this.set($A(this).without(classNameToRemove).join(' '));
2292 // set to true if needed, warning: firefox performance problems
2450 // set position
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DStandardContext.java134 * Array containing the safe characters set.
211 * The set of application parameters defined for this application.
227 * The Locale to character set mapper for this application.
336 * The set of filter configurations (and associated filter instances) we
343 * The set of filter definitions for this application, keyed by
361 * The set of already instantiated InstanceListeners that will be added
448 * of any existing welcome files? This will be set before processing the
922 * Return the Locale to character set mapper for this Context.
941 * Set the Locale to character set mapper for this Context.
979 * set t
7531 listCollectionPaths(Set<String> set, DirContext resources, String path) argument
[all...]

Completed in 5967 milliseconds