Examples of Acft


Examples of br.com.aeroboteco.model.Acft

        pack();
    }// </editor-fold>//GEN-END:initComponents

    private void jbGravarActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jbGravarActionPerformed
        Acft a=new Acft(jtxtIcao.getText(), jtxtFabricante.getText(), jtxtModelo.getText());
        Props.setAcft(a);
        quemChamou.refresh();
        dispose();
    }//GEN-LAST:event_jbGravarActionPerformed
View Full Code Here

Examples of br.com.aeroboteco.model.Acft

        return false;
    }
    public void ordem(final int coluna){
        Collections.sort(acfts, new Comparator() {
            public int compare(Object arg0, Object arg1) {
                Acft a1=(Acft)arg0;
                Acft a2=(Acft)arg1;
                int ret=0;
                if (coluna==0){ret=a1.getIcao().compareTo(a2.getIcao());}
                if (coluna==1){ret=a1.getFabricante().compareTo(a2.getFabricante());}
                if (coluna==2){ret=a1.getModelo().compareTo(a2.getModelo());}
                return ret;
            }
        });
        carrega();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.