Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Archive.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Archive.java106
1 files changed, 0 insertions, 106 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Archive.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Archive.java
deleted file mode 100644
index cac67a4a9d6..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/Archive.java
+++ /dev/null
@@ -1,106 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * QNX Software Systems - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.internal.core.model;
-
-
-import java.util.Map;
-
-import org.eclipse.cdt.core.IBinaryParser.IBinaryArchive;
-import org.eclipse.cdt.core.IBinaryParser.IBinaryObject;
-import org.eclipse.cdt.core.model.CModelException;
-import org.eclipse.cdt.core.model.IArchive;
-import org.eclipse.cdt.core.model.IBinary;
-import org.eclipse.cdt.core.model.ICElement;
-import org.eclipse.cdt.core.model.ICProject;
-import org.eclipse.core.resources.IFile;
-import org.eclipse.core.resources.IResource;
-import org.eclipse.core.runtime.IPath;
-import org.eclipse.core.runtime.IProgressMonitor;
-
-public class Archive extends Openable implements IArchive {
-
- IBinaryArchive binaryArchive;
-
- public Archive(ICElement parent, IFile file, IBinaryArchive ar) {
- this(parent, file.getLocation(), ar);
- }
-
- public Archive(ICElement parent, IPath path, IBinaryArchive ar) {
- super (parent, path, ICElement.C_ARCHIVE);
- binaryArchive = ar;
- }
-
- public IBinary[] getBinaries() throws CModelException {
- ICElement[] e = getChildren();
- IBinary[] b = new IBinary[e.length];
- System.arraycopy(e, 0, b, 0, e.length);
- return b;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.model.ICElement#isReadOnly()
- */
- public boolean isReadOnly() {
- return true;
- }
-
- public CElementInfo createElementInfo() {
- return new ArchiveInfo(this);
- }
-
- protected ArchiveInfo getArchiveInfo() throws CModelException {
- return (ArchiveInfo)getElementInfo();
- }
-
- protected boolean buildStructure(OpenableInfo info, IProgressMonitor pm, Map newElements, IResource underlyingResource)
- throws CModelException {
- return computeChildren(info, underlyingResource);
- }
-
- public boolean computeChildren(OpenableInfo info, IResource res) {
- IBinaryArchive ar = getBinaryArchive();
- if (ar != null) {
- IBinaryObject[] objects = ar.getObjects();
- for (int i = 0; i < objects.length; i++) {
- final IBinaryObject obj = objects[i];
- Binary binary = new Binary(this, ar.getPath().append(obj.getName()), obj);
- info.addChild(binary);
- }
- } else {
- return false;
- }
- return true;
- }
-
- IBinaryArchive getBinaryArchive() {
- return binaryArchive;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.core.model.ICElement#exists()
- */
- public boolean exists() {
- return getResource() != null;
- }
-
- /* (non-Javadoc)
- * @see org.eclipse.cdt.internal.core.model.CElement#closing(java.lang.Object)
- */
- protected void closing(Object info) throws CModelException {
- ICProject cproject = getCProject();
- CProjectInfo pinfo = (CProjectInfo)CModelManager.getDefault().peekAtInfo(cproject);
- if (pinfo != null && pinfo.vLib != null) {
- pinfo.vLib.removeChild(this);
- }
- super.closing(info);
- }
-
-}

Back to the top