Package org.jboss.jms.client.state

Examples of org.jboss.jms.client.state.HierarchicalState


/*     */     }
/*     */   }
/*     */
/*     */   protected void removeSelf(Invocation invocation)
/*     */   {
/* 327 */     HierarchicalState state = ((DelegateSupport)invocation.getTargetObject()).getState();
/*     */
/* 329 */     HierarchicalState parent = state.getParent();
/* 330 */     if (parent != null)
/*     */     {
/* 332 */       parent.getChildren().remove(state);
/*     */     }
/*     */   }
View Full Code Here


/*     */   {
/*  74 */     if (this.connectionState == null)
/*     */     {
/*  76 */       this.delegate = ((DelegateSupport)invocation.getTargetObject());
/*     */
/*  78 */       HierarchicalState hs = this.delegate.getState();
/*  79 */       while ((hs != null) && (!(hs instanceof ConnectionState)))
/*     */       {
/*  81 */         hs = hs.getParent();
/*     */       }
/*     */
/*  84 */       this.connectionState = ((ConnectionState)hs);
/*     */     }
/*     */
View Full Code Here

TOP

Related Classes of org.jboss.jms.client.state.HierarchicalState

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.