Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/search/AttributeExistsFilter.java')
-rw-r--r--plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/search/AttributeExistsFilter.java52
1 files changed, 52 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/search/AttributeExistsFilter.java b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/search/AttributeExistsFilter.java
new file mode 100644
index 00000000000..bc472031dcf
--- /dev/null
+++ b/plugins/org.eclipse.osee.framework.ui.skynet/src/org/eclipse/osee/framework/ui/skynet/search/AttributeExistsFilter.java
@@ -0,0 +1,52 @@
+/*******************************************************************************
+ * Copyright (c) 2014 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.ui.skynet.search;
+
+import org.eclipse.jface.viewers.ComboViewer;
+import org.eclipse.osee.framework.core.data.IAttributeType;
+import org.eclipse.osee.framework.jdk.core.util.Strings;
+import org.eclipse.osee.framework.skynet.core.artifact.search.AttributeExistsSearch;
+import org.eclipse.osee.framework.skynet.core.artifact.search.ISearchPrimitive;
+import org.eclipse.osee.framework.ui.skynet.search.filter.FilterTableViewer;
+import org.eclipse.swt.widgets.Control;
+
+/**
+ * @author John Misinco
+ */
+public class AttributeExistsFilter extends SearchFilter {
+ private final ComboViewer attributeTypeList;
+
+ public AttributeExistsFilter(Control optionsControl, ComboViewer attributeTypeList) {
+ super("Attribute Exists", optionsControl);
+ this.attributeTypeList = attributeTypeList;
+ }
+
+ @Override
+ public void addFilterTo(FilterTableViewer filterViewer) {
+ String typeName = attributeTypeList.getCombo().getText();
+
+ IAttributeType attributeType = (IAttributeType) attributeTypeList.getData(typeName);
+ ISearchPrimitive primitive = new AttributeExistsSearch(attributeType);
+ filterViewer.addItem(primitive, getFilterName(), typeName, Strings.EMPTY_STRING);
+ }
+
+ @Override
+ public boolean isValid() {
+ return true;
+ }
+
+ @Override
+ public void loadFromStorageString(FilterTableViewer filterViewer, String type, String value, String storageString, boolean isNotEnabled) {
+ ISearchPrimitive primitive = AttributeExistsSearch.getPrimitive(storageString);
+ filterViewer.addItem(primitive, getFilterName(), type, value);
+ }
+
+}

Back to the top