com.sun.corba.se.spi.monitoring.MonitoredAttribute Java Examples
The following examples show how to use
com.sun.corba.se.spi.monitoring.MonitoredAttribute.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MonitoredObjectImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #2
Source File: MonitoredObjectImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #3
Source File: MonitoredObjectImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #4
Source File: MonitoredObjectImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #5
Source File: MonitoredObjectImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #6
Source File: MonitoredObjectImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #7
Source File: MonitoredObjectImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #8
Source File: MonitoredObjectImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #9
Source File: MonitoredObjectImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #10
Source File: MonitoredObjectImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #11
Source File: MonitoredObjectImpl.java From JDKSourceCode1.8 with MIT License | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #12
Source File: MonitoredObjectImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #13
Source File: MonitoredObjectImpl.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #14
Source File: MonitoredObjectImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #15
Source File: MonitoredObjectImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #16
Source File: MonitoredObjectImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #17
Source File: MonitoredObjectImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #18
Source File: MonitoredObjectImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #19
Source File: MonitoredObjectImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * calls clearState() on all the registered children MonitoredObjects and * MonitoredAttributes. */ public void clearState( ) { synchronized( this ) { Iterator i = monitoredAttributes.values().iterator(); // First call clearState on all the local attributes while( i.hasNext( ) ) { ((MonitoredAttribute)i.next()).clearState(); } i = children.values().iterator(); // next call clearState on all the children MonitoredObjects while( i.hasNext() ) { ((MonitoredObject)i.next()).clearState(); } } }
Example #20
Source File: MonitoredObjectImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public void addAttribute( MonitoredAttribute value ) { if (value != null) { synchronized( this ) { monitoredAttributes.put( value.getName(), value ); } } }
Example #21
Source File: MonitoredObjectImpl.java From hottub with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #22
Source File: MonitoredObjectImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #23
Source File: MonitoredObjectImpl.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #24
Source File: MonitoredObjectImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #25
Source File: MonitoredObjectImpl.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #26
Source File: MonitoredObjectImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #27
Source File: MonitoredObjectImpl.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #28
Source File: MonitoredObjectImpl.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #29
Source File: MonitoredObjectImpl.java From JDKSourceCode1.8 with MIT License | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }
Example #30
Source File: MonitoredObjectImpl.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public MonitoredAttribute getAttribute( String name ) { synchronized( this ) { return (MonitoredAttribute) monitoredAttributes.get( name ); } }