Package org.jboss.profileservice.management.views

Examples of org.jboss.profileservice.management.views.AbstractProfileView


      boolean wasModified = false;
      try
      {
         // The active profile
         Profile profile = ps.getActiveProfile(key);
         AbstractProfileView view = this.profileViews.get(profile.getKey());
        
         // Check if we need to reload the profile
         wasModified = forceReload
            || view == null
            || view.hasBeenModified(profile);
        
         if(wasModified)
         {
            this.profileViews.put(key, createProfileView(profile));
            wasModified = true;
View Full Code Here

TOP

Related Classes of org.jboss.profileservice.management.views.AbstractProfileView

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.