svn commit: r16278 - trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java
Tom Morris <[email protected]>
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2008-12-07 12:37:30-0800
New Revision: 16278
Modified:
trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java
Log:
Remove/make private deprecated methods
Modified: trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java?view=diff&pathrev=16278&r1=16277&r2=16278
==============================================================================
--- trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java (original)
+++ trunk/src/argouml-app/src/org/argouml/ui/FindDialog.java 2008-12-07 12:37:30-0800
@@ -306,27 +306,6 @@
help.add(new JScrollPane(helpText), BorderLayout.CENTER);
}
- /**
- * Init the tab with the tagged values.
- */
- private void initTagValsTab() {
- //TODO: This tab does not work currently.
- }
-
- /**
- * Init the Last Modified tab.
- */
- private void initModifiedTab() {
- // TODO: This tab does not work currently.
- }
-
- /**
- * Init the Constraints tab.
- */
- private void initConstraintsTab() {
- // TODO: This tab does not work currently.
- }
-
/**
* Init the modelelement types that we can look for.
@@ -551,8 +530,9 @@
}
/**
- * Reset the user interface to its initial state. Use this if a new project
- * has been loaded and the Find dialog is being displayed with stale results.
+ * Reset the user interface to its initial state. Use this if a new project
+ * has been loaded and the Find dialog is being displayed with stale
+ * results.
*/
public void reset() {
doClearTabs();
@@ -561,12 +541,8 @@
/**
* Clear the tabs.
- *
- * @deprecated for 0.25.4 by tfmorris. The visibility of this will be
- * reduced in the future. Use {@link #reset()}.
*/
- @Deprecated
- public void doClearTabs() {
+ private void doClearTabs() {
int numTabs = resultTabs.size();
for (int i = 0; i < numTabs; i++) {
results.remove(resultTabs.get(i));
@@ -584,11 +560,8 @@
*
* @param complete if true, reset all 3 fields (element name, diagram name,
* and location), otherwise only the last is reset.
- * @deprecated for 0.25.4 by tfmorris. The visibility of this will be
- * reduced in the future. Use {@link #reset()}.
*/
- @Deprecated
- public void doResetFields(boolean complete) {
+ private void doResetFields(boolean complete) {
if (complete) {
elementName.removeAllItems();
diagramName.removeAllItems();
@@ -601,17 +574,6 @@
}
/**
- * Reset all 3 fields.
- *
- * @deprecated for 0.25.4 by tfmorris. The visibility of this will be
- * reduced in the future. Use {@link #reset()}.
- */
- @Deprecated
- public void doResetFields() {
- doResetFields(true);
- }
-
- /**
* Execute the GoTo selection command.
*/
private void doGoToSelection() {
------------------------------------------------------
http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=980878
To unsubscribe from this discussion, e-mail: [[email protected]].