/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/ |
H A D | TypedChangeEvent.java | 55 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 D | TypedVetoableChangeSupport.java | 62 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 D | AttributeChangeNotificationBuilder.java | 75 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 D | NameValue.java | 75 public V setValue(V newValue) { argument 77 value = newValue;
|
/glassfish-3.1.2/installer/src/main/java/org/glassfish/installer/util/ |
H A D | StringUtils.java | 130 * @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 D | FileIOUtils.java | 129 * @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 D | ProbeProviderFactory.java | 51 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 D | UnprocessedConfigChange.java | 95 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 D | InsnConstOp.java | 196 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 D | NamingContextListener.java | 526 * @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 D | FlashlightProbeProviderFactory.java | 117 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 D | BaseModelMBean.java | 938 * @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 D | AMXConfigLoader.java | 141 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 D | AMXConfigImpl.java | 1636 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 D | AMXImplBase.java | 672 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
|