Author: jjankovi
Date: 2012-05-22 05:13:22 -0400 (Tue, 22 May 2012)
New Revision: 41235
Added:
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/EditArchiveDialog.java
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/NewJarDialog.java
Log:
Two main dialogs for Project Archives
Added:
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/EditArchiveDialog.java
===================================================================
---
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/EditArchiveDialog.java
(rev 0)
+++
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/EditArchiveDialog.java 2012-05-22
09:13:22 UTC (rev 41235)
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.archives.ui.bot.test.dialog;
+
+/**
+ *
+ * @author jjankovi
+ *
+ */
+public class EditArchiveDialog extends ArchiveCreationDialogBase {
+
+ public EditArchiveDialog() {
+ super();
+ }
+
+ @Override
+ public String getDialogTitle() {
+ return "Edit Archive";
+ }
+
+}
Added:
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/NewJarDialog.java
===================================================================
---
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/NewJarDialog.java
(rev 0)
+++
trunk/archives/tests/org.jboss.tools.archives.ui.bot.test/src/org/jboss/tools/archives/ui/bot/test/dialog/NewJarDialog.java 2012-05-22
09:13:22 UTC (rev 41235)
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at
http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.archives.ui.bot.test.dialog;
+
+/**
+ *
+ * @author jjankovi
+ *
+ */
+public class NewJarDialog extends ArchiveCreationDialogBase {
+
+ public NewJarDialog() {
+ super();
+ }
+
+ @Override
+ public String getDialogTitle() {
+ return "New JAR";
+ }
+
+}