Package org.apache.harmony.tools.policytool.model

Examples of org.apache.harmony.tools.policytool.model.GrantEntry


        super( ownerFrame, "Policy Entry", ownerEditorPanel );

        this.initialGrantEntry = grantEntry;
        this.policyEntryList   = policyEntryList;

        newGrantEntry = initialGrantEntry == null ? new GrantEntry() : null;

        prepareForDisplay();
    }
View Full Code Here


    @Override
    public void onOkButtonPressed() {
        // TODO: validation

        final GrantEntry grantEntry = initialGrantEntry == null ? newGrantEntry : initialGrantEntry;

        grantEntry.setCodeBase( codeBaseTextField.getText() );
        grantEntry.setSignedBy( signedByTextField.getText() );

        if ( initialGrantEntry == null ) {
            policyEntryList.add( grantEntry );
            listModel.addElement( grantEntry );
        } else
View Full Code Here

TOP

Related Classes of org.apache.harmony.tools.policytool.model.GrantEntry

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.