Author: scabanovich
Date: 2008-04-15 09:44:34 -0400 (Tue, 15 Apr 2008)
New Revision: 7533
Added:
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/InstallTest.java
Log:
JBIDE-2052 Test
Added:
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/InstallTest.java
===================================================================
---
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/InstallTest.java
(rev 0)
+++
trunk/seam/tests/org.jboss.tools.seam.core.test/projects/TestScanner/JavaSource/demo/InstallTest.java 2008-04-15
13:44:34 UTC (rev 7533)
@@ -0,0 +1,28 @@
+/*******************************************************************************
+ * Copyright (c) 2007 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 demo;
+
+import javax.persistence.Entity;
+import org.jboss.seam.ScopeType;
+import org.jboss.seam.annotations.*;
+import org.jboss.seam.Component;
+
+/**
+ * Created by JBoss Developer Studio
+ */
+
+@Name("installWithoutPrecedence_JBIDE_2052")
+(a)Scope(ScopeType.APPLICATION)
+@Entity
+@Install(false)
+public class InstallTest {
+
+}