01: /*
02: * ProGuard -- shrinking, optimization, obfuscation, and preverification
03: * of Java bytecode.
04: *
05: * Copyright (c) 2002-2007 Eric Lafortune (eric@graphics.cornell.edu)
06: *
07: * This program is free software; you can redistribute it and/or modify it
08: * under the terms of the GNU General Public License as published by the Free
09: * Software Foundation; either version 2 of the License, or (at your option)
10: * any later version.
11: *
12: * This program is distributed in the hope that it will be useful, but WITHOUT
13: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15: * more details.
16: *
17: * You should have received a copy of the GNU General Public License along
18: * with this program; if not, write to the Free Software Foundation, Inc.,
19: * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20: */
21: package proguard.gui;
22:
23: import proguard.*;
24:
25: import javax.swing.*;
26:
27: /**
28: * This <code>ListPanel</code> allows the user to add, edit, move, and remove
29: * KeepSpecification entries in a list.
30: *
31: * @author Eric Lafortune
32: */
33: final class KeepSpecificationsPanel extends ClassSpecificationsPanel {
34: private final boolean markClasses;
35: private final boolean markConditionally;
36: private final boolean allowShrinking;
37: private final boolean allowOptimization;
38: private final boolean allowObfuscation;
39:
40: public KeepSpecificationsPanel(JFrame owner, boolean markClasses,
41: boolean markConditionally, boolean allowShrinking,
42: boolean allowOptimization, boolean allowObfuscation) {
43: super (owner, true);
44:
45: this .markClasses = markClasses;
46: this .markConditionally = markConditionally;
47: this .allowShrinking = allowShrinking;
48: this .allowOptimization = allowOptimization;
49: this .allowObfuscation = allowObfuscation;
50: }
51:
52: // Factory methods for ClassSpecificationsPanel.
53:
54: protected ClassSpecification createClassSpecification() {
55: return new KeepSpecification(markClasses, markConditionally,
56: allowShrinking, allowOptimization, allowObfuscation);
57: }
58:
59: protected void setClassSpecification(
60: ClassSpecification classSpecification) {
61: classSpecificationDialog
62: .setKeepSpecification((KeepSpecification) classSpecification);
63: }
64:
65: protected ClassSpecification getClassSpecification() {
66: return classSpecificationDialog.getKeepSpecification();
67: }
68: }
|