Package org.eclipse.jface.preference

Examples of org.eclipse.jface.preference.PreferenceNode


        createCitiesAddData();
        createClausesAddData();
    }
   
    private void createClausesAddData() {
        clausesAddNode = new PreferenceNode("clausesAdd");
       
        clausesAdd = new ClausesPreferencePage();
        clausesAdd.setMessage("Configurar Contrato");
        clausesAdd.setTitle("Configurar Contrato");
       
View Full Code Here


       
        clausesAddNode.setPage(clausesAdd);
    }
   
    private void createCitiesAddData() {
      citiesAddNode = new PreferenceNode("citiesAdd");
     
      citiesAdd = new CitiesAddPreferencePage();
      citiesAdd.setMessage("Adicionar Cidades");
      citiesAdd.setTitle("Adicionar Cidades");
     
View Full Code Here

     
      citiesAddNode.setPage(citiesAdd);
    }

    private void createLabelMailingData() {
        labelMailingNode = new PreferenceNode("labelMailing");
       
        labelMailing = new LabelMailingPreferencePage();
        labelMailing.setMessage("Adicionar Etiquetas");
        labelMailing.setTitle("Adicionar Etiquetas");
       
View Full Code Here

       
        labelMailingNode.setPage(labelMailing);
    }

    private void createWorkDateConfigData() {
        workDateConfigNode = new PreferenceNode("workDateConfig");
       
        workDate = new WorkDatePreferencePage();
        workDate.setMessage("Hor�rios");
        workDate.setTitle("Hor�rios");
       
View Full Code Here

       
        workDateConfigNode.setPage(workDate);
    }

    private void createUpdateData() {
        updateConfigNode = new PreferenceNode("updateConfig");
       
        update = new UpdatePreferencePage();
        update.setMessage("Atualiza��es Automaticas");
        update.setTitle("Atualiza��es Automaticas");
       
View Full Code Here

       
        updateConfigNode.setPage(update);
    }
   
    private void createSuportData() {
        suportConfigNode = new PreferenceNode("suportConfig");
       
        suport = new SuportPreferencePage();
        suport.setMessage("Suporte");
        suport.setTitle("Suporte");
       
View Full Code Here

       
        suportConfigNode.setPage(suport);
    }

    private void createLogoConfigData() {
        logoConfigNode = new PreferenceNode("logoConfig");
       
        logo = new LogoPreferencePage();
        logo.setMessage("Logotipo");
        logo.setTitle("Logotipo");
       
View Full Code Here

       
        logoConfigNode.setPage(logo);
    }

    private void createComercialConfigData() {
        comercialConfigNode = new PreferenceNode("comercialConfig");
       
        dataCorporation = new DataCorporationPreferencePage();
        dataCorporation.setMessage("Dados da Empresa");
        dataCorporation.setTitle("Dados da Empresa");
       
View Full Code Here

       
        comercialConfigNode.setPage(dataCorporation);
    }

    private void createFinancialData() {
        dataFinancialNode = new PreferenceNode("financialInformation");
       
        dataFinancial = new FinancialInfoPreferencePage();
        dataFinancial.setMessage("Financeiro");
        dataFinancial.setTitle("Financeiro");
       
View Full Code Here

    mProperties = new Action() {
      public void run() {

        PreferenceManager mgr = new PreferenceManager();
        PreferenceDialog dlg = new PreferenceDialog(null, mgr);
        PreferenceNode node = new PreferenceNode("Gateway Client",
            new WorkbenchPreferencePage("Gateway Client"));

        mgr.addToRoot(node);

        dlg.open();
View Full Code Here

TOP

Related Classes of org.eclipse.jface.preference.PreferenceNode

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.