Package org.swingBean.descriptor

Examples of org.swingBean.descriptor.TableFieldDescriptor


  private void criarForms(){
    GenericFieldDescriptor formdescriptor = XMLDescriptorFactory
      .getFieldDescriptor(IefInfoTela.class, "org/ita/capes/ief/ui/IefInfoTelaForm.xml", "IefInfoTelaForm");
    panelFormulario = new JBeanPanel<IefInfoTela>(IefInfoTela.class, formdescriptor);
   
    TableFieldDescriptor tabledescriptor = XMLDescriptorFactory
    .getTableFieldDescriptor(IefInfoTela.class, "org/ita/capes/ief/ui/IefInfoTelaTabela.xml","IefInfoTelaTable");
    model = new BeanTableModel<IefInfoTela>(tabledescriptor);

  }
View Full Code Here


  private void criarForms(){
    GenericFieldDescriptor formdescriptor = XMLDescriptorFactory
      .getFieldDescriptor(ProfessorTela.class, "org/ita/capes/professor/ui/ProfessorTelaForm.xml", "ProfessorTelaForm");
    panelFormulario = new JBeanPanel<ProfessorTela>(ProfessorTela.class, formdescriptor);
   
    TableFieldDescriptor tabledescriptor = XMLDescriptorFactory
    .getTableFieldDescriptor(ProfessorTela.class, "org/ita/capes/professor/ui/ProfessorTelaTabela.xml","ProfessorTelaTable");
    model = new BeanTableModel<ProfessorTela>(tabledescriptor);

  }
View Full Code Here

TOP

Related Classes of org.swingBean.descriptor.TableFieldDescriptor

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.