Searched defs:newValue (Results 1 - 15 of 15) sorted by relevance

/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DTypedChangeEvent.java55 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) { argument
56 super(source, propertyName, oldValue, newValue);
60 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, Type type) { argument
61 super(source, propertyName, oldValue, newValue);
H A DTypedVetoableChangeSupport.java62 public void fireVetoableChange(String propertyName, Object oldValue, Object newValue) argument
65 super.fireVetoableChange(new TypedChangeEvent(source, propertyName, oldValue, newValue));
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DAttributeChangeNotificationBuilder.java75 final Object newValue)
77 return buildAttributeChange(msg, attributeName, attributeType, now(), oldValue, newValue);
86 final Object newValue)
96 newValue);
70 buildAttributeChange( final String msg, final String attributeName, final String attributeType, final Object oldValue, final Object newValue) argument
80 buildAttributeChange( final String msg, final String attributeName, final String attributeType, final long when, final Object oldValue, final Object newValue) argument
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/
H A DNameValue.java75 public V setValue(V newValue) { argument
77 value = newValue;
/glassfish-3.1.2/installer/src/main/java/org/glassfish/installer/util/
H A DStringUtils.java130 * @param newValue replacement string.
133 static public String substString(StringBuffer str, String token, String newValue) { argument
134 int offset = 0, tokenLen = token.length(), valLen = newValue.length();
137 str.replace(offset, offset + tokenLen, newValue);
H A DFileIOUtils.java129 * @param newValue replacement string.
131 public void findandReplaceAll(String token, String newValue) { argument
136 token, newValue));
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/provider/
H A DProbeProviderFactory.java51 void dtraceEnabledChanged(boolean newValue); argument
53 void monitoringEnabledChanged(boolean newValue); argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/
H A DUnprocessedConfigChange.java95 final String newValue,
103 mNewValue = newValue;
149 ", newValue = " + StringUtil.quote( getNewValue() ) +
92 UnprocessedConfigChange( final String name, final String oldValue, final String newValue, final Object source, final String reason) argument
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DInsnConstOp.java196 public void setValue(ConstBasic newValue) { argument
197 checkConstant(newValue);
198 constValue = newValue;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DNamingContextListener.java526 * @param newValue The new value (or <code>null</code> if removing)
530 Object newValue) {
539 if (newValue != null) {
540 ContextEjb ejb = (ContextEjb) newValue;
552 if (newValue != null) {
553 ContextEnvironment env = (ContextEnvironment) newValue;
565 if (newValue != null) {
566 ContextLocalEjb ejb = (ContextLocalEjb) newValue;
578 if (newValue != null) {
579 ContextResource resource = (ContextResource) newValue;
528 processGlobalResourcesChange(String name, Object oldValue, Object newValue) argument
[all...]
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/impl/provider/
H A DFlashlightProbeProviderFactory.java117 public void dtraceEnabledChanged(boolean newValue) { argument
118 FlashlightUtils.setDTraceEnabled(newValue);
124 if(newValue == false)
146 public void monitoringEnabledChanged(boolean newValue) { argument
147 FlashlightUtils.setMonitoringEnabled(newValue);
153 if(newValue == true && FlashlightUtils.isDtraceEnabled())
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DBaseModelMBean.java938 * @param newValue The new value of the <code>Attribute</code>
946 (Attribute oldValue, Attribute newValue)
951 if (newValue.getValue() != null)
952 type = newValue.getValue().getClass().getName();
963 oldValue.getValue(), newValue.getValue());
945 sendAttributeChangeNotification(Attribute oldValue, Attribute newValue) argument
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/
H A DAMXConfigLoader.java141 final Object newValue,
150 changed = !oldValue.equals(newValue);
151 } else if (newValue != null) {
152 changed = !newValue.equals(oldValue);
156 //debug( "AMXConfigLoader.issueAttributeChange(): " + xmlAttrName + ": {" + oldValue + " => " + newValue + "}");
162 final String message = cb.getProxyType().getName() + "." + xmlAttrName + ": " + oldValue + " => " + newValue;
163 amx.issueAttributeChangeForXmlAttrName(xmlAttrName, message, oldValue, newValue, whenChanged);
181 final Object newValue = event.getNewValue();
185 if (oldValue == null && newValue instanceof ConfigBeanProxy) {
187 final ConfigBeanProxy cbp = (ConfigBeanProxy) newValue;
137 issueAttributeChange( final ConfigBean cb, final String xmlAttrName, final Object oldValue, final Object newValue, final long whenChanged) argument
[all...]
H A DAMXConfigImpl.java1636 final Object newValue,
1648 getLogger().fine( getObjectName() + " -- " + attributeName + " = " + newValue + " <== " + oldValue );
1654 new AttributeChangeNotification( getObjectName(), sequenceNumber, whenChanged, message, attributeName, attributeType, oldValue, newValue);
1632 issueAttributeChangeForXmlAttrName( final String xmlAttrName, final String message, final Object oldValue, final Object newValue, final long whenChanged ) argument
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/
H A DAMXImplBase.java672 final Object newValue) {
676 if (oldValue != null && !oldValue.equals(newValue)) {
681 builder.buildAttributeChange(msg, name, attrType, when, oldValue, newValue);
703 final Object newValue = attrsMap.get(attrName);
705 sendAttributeChangeNotification("", attrName, attrType, when, oldValue, newValue);
666 sendAttributeChangeNotification( final String msg, final String name, final String attrType, final long when, final Object oldValue, final Object newValue) argument

Completed in 3731 milliseconds