Author: scabanovich
Date: 2007-07-23 09:08:16 -0400 (Mon, 23 Jul 2007)
New Revision: 2601
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/ISeamScope.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueList.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMap.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMapEntry.java
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueString.java
Log:
EXIN-217 - comments added
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/ISeamScope.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/ISeamScope.java 2007-07-23
13:04:52 UTC (rev 2600)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/ISeamScope.java 2007-07-23
13:08:16 UTC (rev 2601)
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2007 Exadel, Inc. and 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:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
package org.jboss.tools.seam.core;
import java.util.List;
@@ -2,6 +12,17 @@
+/**
+ * @author Viacheslav Kabanovich
+ */
public interface ISeamScope extends ISeamElement {
+ /**
+ *
+ * @return ScopeType object identifying this object in project
+ */
public ScopeType getType();
+ /**
+ *
+ * @return list of all seam components resolved to this scope
+ */
public List<ISeamComponent> getComponents();
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueList.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueList.java 2007-07-23
13:04:52 UTC (rev 2600)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueList.java 2007-07-23
13:08:16 UTC (rev 2601)
@@ -16,7 +16,10 @@
* @author Viacheslav Kabanovich
*/
public interface ISeamValueList extends ISeamValue {
-
+ /**
+ *
+ * @return values of seam list property
+ */
public List<ISeamValueString> getValues();
}
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMap.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMap.java 2007-07-23
13:04:52 UTC (rev 2600)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMap.java 2007-07-23
13:08:16 UTC (rev 2601)
@@ -17,6 +17,10 @@
*/
public interface ISeamValueMap extends ISeamValue {
+ /**
+ *
+ * @return entries of seam map property
+ */
public List<ISeamValueMapEntry> getEntries();
}
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMapEntry.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMapEntry.java 2007-07-23
13:04:52 UTC (rev 2600)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueMapEntry.java 2007-07-23
13:08:16 UTC (rev 2601)
@@ -17,8 +17,16 @@
*/
public interface ISeamValueMapEntry extends ISeamElement {
+ /**
+ *
+ * @return key of entry of seam map property
+ */
public ISeamValueString getKey();
+ /**
+ *
+ * @return value of entry of seam map property
+ */
public ISeamValueString getValue();
}
Modified:
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueString.java
===================================================================
---
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueString.java 2007-07-23
13:04:52 UTC (rev 2600)
+++
trunk/seam/plugins/org.jboss.tools.seam.core/src/org/jboss/tools/seam/core/event/ISeamValueString.java 2007-07-23
13:08:16 UTC (rev 2601)
@@ -17,6 +17,11 @@
*/
public interface ISeamValueString extends ISeamValue {
+ /**
+ * Returns value info object that includes string value
+ * of seam property and its position in source.
+ * @return value info object
+ */
public IValueInfo getValue();
}