Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java')
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java134
1 files changed, 67 insertions, 67 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java
index 0aa974584..1c820c714 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/model/AbstractBaseIntroElement.java
@@ -33,74 +33,74 @@ import org.w3c.dom.Element;
*/
public abstract class AbstractBaseIntroElement extends AbstractIntroIdElement {
- protected static final String ATT_STYLE_ID = "style-id"; //$NON-NLS-1$
- protected static final String ATT_FILTERED_FROM = "filteredFrom"; //$NON-NLS-1$
-
- protected String style_id;
- protected String filteredFrom;
- private boolean isFiltered;
-
- AbstractBaseIntroElement(IConfigurationElement element) {
- super(element);
- style_id = element.getAttribute(ATT_STYLE_ID);
- filteredFrom = element.getAttribute(ATT_FILTERED_FROM);
- }
-
- AbstractBaseIntroElement(Element element, Bundle bundle) {
- super(element, bundle);
- style_id = getAttribute(element, ATT_STYLE_ID);
- filteredFrom = getAttribute(element, ATT_FILTERED_FROM);
- }
-
- /**
- * Filter this element out based on the presentation kind.
- *
- */
- private boolean checkFilterState() {
- if (this.isOfType(AbstractIntroElement.MODEL_ROOT))
- // root element is not filtered.
- return false;
- IntroModelRoot root = (IntroModelRoot) getParentPage().getParent();
- return root.getPresentation().getImplementationKind().equals(
- filteredFrom) ? true : false;
- }
-
-
- /**
- * @return Returns the class id.
- */
- public String getStyleId() {
- return style_id;
- }
-
- @Override
+ protected static final String ATT_STYLE_ID = "style-id"; //$NON-NLS-1$
+ protected static final String ATT_FILTERED_FROM = "filteredFrom"; //$NON-NLS-1$
+
+ protected String style_id;
+ protected String filteredFrom;
+ private boolean isFiltered;
+
+ AbstractBaseIntroElement(IConfigurationElement element) {
+ super(element);
+ style_id = element.getAttribute(ATT_STYLE_ID);
+ filteredFrom = element.getAttribute(ATT_FILTERED_FROM);
+ }
+
+ AbstractBaseIntroElement(Element element, Bundle bundle) {
+ super(element, bundle);
+ style_id = getAttribute(element, ATT_STYLE_ID);
+ filteredFrom = getAttribute(element, ATT_FILTERED_FROM);
+ }
+
+ /**
+ * Filter this element out based on the presentation kind.
+ *
+ */
+ private boolean checkFilterState() {
+ if (this.isOfType(AbstractIntroElement.MODEL_ROOT))
+ // root element is not filtered.
+ return false;
+ IntroModelRoot root = (IntroModelRoot) getParentPage().getParent();
+ return root.getPresentation().getImplementationKind().equals(
+ filteredFrom) ? true : false;
+ }
+
+
+ /**
+ * @return Returns the class id.
+ */
+ public String getStyleId() {
+ return style_id;
+ }
+
+ @Override
protected void loadFromParent() {
- style_id = getAttribute(getElement(), ATT_STYLE_ID);
- filteredFrom = getAttribute(getElement(), ATT_FILTERED_FROM);
- }
-
- /**
- * @return Returns the filter_kind.
- */
- public String getFilteredFrom() {
- return filteredFrom;
- }
-
- /**
- * Return the filter state of this intro element. We need to do this when
- * this element has been added to the model, and it has a parent. Also, this
- * method will not be valid if the UI has not been loaded yet because it it
- * the creation of the UI that determines the presentation details.
- *
- * @return Returns the isFiltered.
- */
- public boolean isFiltered() {
- return checkFilterState() || isFiltered;
- }
-
- public void setFilterState(boolean state) {
- isFiltered = state;
- }
+ style_id = getAttribute(getElement(), ATT_STYLE_ID);
+ filteredFrom = getAttribute(getElement(), ATT_FILTERED_FROM);
+ }
+
+ /**
+ * @return Returns the filter_kind.
+ */
+ public String getFilteredFrom() {
+ return filteredFrom;
+ }
+
+ /**
+ * Return the filter state of this intro element. We need to do this when
+ * this element has been added to the model, and it has a parent. Also, this
+ * method will not be valid if the UI has not been loaded yet because it it
+ * the creation of the UI that determines the presentation details.
+ *
+ * @return Returns the isFiltered.
+ */
+ public boolean isFiltered() {
+ return checkFilterState() || isFiltered;
+ }
+
+ public void setFilterState(boolean state) {
+ isFiltered = state;
+ }

Back to the top