[jboss-cvs] jbosside/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards ...

Robert Stryker rawblem at gmail.com
Tue Aug 15 12:05:30 EDT 2006


  User: rawb    
  Date: 06/08/15 12:05:30

  Modified:    as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards 
                        NewMBeanWizard.java
  Log:
  Added package status to list of possible status errors
  
  Revision  Changes    Path
  1.3       +4 -4      jbosside/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/NewMBeanWizard.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NewMBeanWizard.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosside/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/NewMBeanWizard.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- NewMBeanWizard.java	12 Aug 2006 05:06:42 -0000	1.2
  +++ NewMBeanWizard.java	15 Aug 2006 16:05:30 -0000	1.3
  @@ -85,15 +85,13 @@
   
   				IPath newPath = new Path(fullPath.segment(0));
   
  -				// BLOCKING on eclipse bug 153135
  +				// TODO: BLOCKING on eclipse bug 153135
   //				IPath newPath = new Path(fullPath.segment(0)).append("META-INF");
   //				newFilePage.setContainerFullPath(newPath);
   				
   				IFile newFile = newFilePage.createNewFile();
   				createStubServiceDescriptor(newFile);
  -				ASDebug.p("create it", this);
   			} else {
  -				ASDebug.p("DO NOT CREATE", this);
   			}
   		} catch( Throwable jme) {
   			jme.printStackTrace();
  @@ -122,7 +120,7 @@
   		newFilePage.defaultFileExtension = "."+ext; //$NON-NLS-1$
   		newFilePage.filterExtensions = new String[] {"*.xml"};
   		addPage(newFilePage);
  -		
  +		// 
   	}
   	
   	private class MBeanInterfacePage extends NewTypeWizardPage {
  @@ -158,6 +156,7 @@
   					fTypeNameStatus = typeNameChanged(getTypeName());
   					fMBeanNameStatus = typeNameChanged(fMBeanNameDialogField.getText());
   				}
  +				
   				handleFieldChanged(fieldName);
   				
   			}
  @@ -232,6 +231,7 @@
   			// status of all used components
   			IStatus[] status= new IStatus[] {
   				fContainerStatus,
  +				fPackageStatus, 
   				fTypeNameStatus,
   				fMBeanNameStatus,
   				fSuperClassStatus,
  
  
  



More information about the jboss-cvs-commits mailing list