Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jem.ui/beaninfoui/org/eclipse/jem/internal/beaninfo/ui/BPSearchListElement.java')
-rw-r--r--plugins/org.eclipse.jem.ui/beaninfoui/org/eclipse/jem/internal/beaninfo/ui/BPSearchListElement.java71
1 files changed, 0 insertions, 71 deletions
diff --git a/plugins/org.eclipse.jem.ui/beaninfoui/org/eclipse/jem/internal/beaninfo/ui/BPSearchListElement.java b/plugins/org.eclipse.jem.ui/beaninfoui/org/eclipse/jem/internal/beaninfo/ui/BPSearchListElement.java
deleted file mode 100644
index 4f4331a15..000000000
--- a/plugins/org.eclipse.jem.ui/beaninfoui/org/eclipse/jem/internal/beaninfo/ui/BPSearchListElement.java
+++ /dev/null
@@ -1,71 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2005 IBM Corporation and others.
- * 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jem.internal.beaninfo.ui;
-/*
- * $RCSfile: BPSearchListElement.java,v $
- * $Revision: 1.5 $ $Date: 2005/08/24 21:07:12 $
- */
-
-import org.eclipse.jem.internal.beaninfo.core.SearchpathEntry;
-
-/**
- * @version 1.0
- * @author
- */
-public class BPSearchListElement extends BPListElement {
-
- protected boolean exported;
- protected boolean packageMissing;
- /**
- * Constructor for BPSearchListElement.
- * @param entry
- * @param project
- * @param inMissing
- */
- public BPSearchListElement(
- SearchpathEntry entry,
- boolean missing,
- boolean packageMissing,
- boolean exported) {
- super(entry, missing);
-
- this.packageMissing = packageMissing;
- this.exported = exported;
- }
-
- /*
- * @see BPListElement#canExportBeChanged()
- */
- public boolean canExportBeChanged() {
- return false;
- }
-
- /*
- * @see BPListElement#isExported()
- */
- public boolean isExported() {
- return exported;
- }
-
- /**
- * Is the package missing.
- */
- public boolean isPackageMissing() {
- return packageMissing;
- }
-
- /*
- * @see BPListElement#setExported(boolean)
- */
- public void setExported(boolean exported) {
- }
-
-}

Back to the top