Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/meowers/cide/edcide/BlankEditor.java


1   /*
2    * BlankEditorPanel.java
3    *
4    * Created on January 18, 2002, 9:40 PM
5    */
6   
7   package org.meowers.cide.edcide;
8   
9   /**
10   *
11   * @author  adam
12   */
13  public class BlankEditor extends EdCideEditor {
14  
15      /** Creates new form BlankEditorPanel */
16      public BlankEditor() {
17          initComponents();
18      }
19  
20      /** This method is called from within the constructor to
21       * initialize the form.
22       * WARNING: Do NOT modify this code. The content of this method is
23       * always regenerated by the Form Editor.
24       */
25      private void initComponents() {//GEN-BEGIN:initComponents
26          helpLabel = new javax.swing.JLabel();
27          
28          setLayout(new java.awt.BorderLayout());
29          
30          helpLabel.setText("Select object to edit.");
31          helpLabel.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
32          add(helpLabel, java.awt.BorderLayout.CENTER);
33          
34      }//GEN-END:initComponents
35  
36      public boolean apply() {
37          return (true);
38      }    
39  
40      public void revert() {
41      }    
42  
43      // Variables declaration - do not modify//GEN-BEGIN:variables
44      private javax.swing.JLabel helpLabel;
45      // End of variables declaration//GEN-END:variables
46  
47  }