Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethodDeclaration.java')
-rw-r--r--core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethodDeclaration.java78
1 files changed, 0 insertions, 78 deletions
diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethodDeclaration.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethodDeclaration.java
deleted file mode 100644
index 30f25f80109..00000000000
--- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethodDeclaration.java
+++ /dev/null
@@ -1,78 +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.core.model;
-
-
-/**
- * Represents the declaration method of a class
- */
-public interface IMethodDeclaration extends IMember, IFunctionDeclaration {
-
- /**
- * Returns whether this method is a constructor.
- *
- * @exception CModelException if this element does not exist or if an
- * exception occurs while accessing its corresponding resource.
- */
- boolean isConstructor() throws CModelException;
-
- /**
- * Returns whether this method is a destructor.
- *
- * @exception CModelException if this element does not exist or if an
- * exception occurs while accessing its corresponding resource.
- */
- boolean isDestructor() throws CModelException;
-
- /**
- * Returns whether this method is an operator method.
- *
- * @exception CModelException if this element does not exist or if an
- * exception occurs while accessing its corresponding resource.
- */
- boolean isOperator() throws CModelException;
-
- /**
- * Returns whether this method is declared pure virtual.
- *
- * <p>For example, a source method declared as <code>virtual void m() = 0;</code>.
- *
- * @exception CModelException if this element does not exist or if an
- * exception occurs while accessing its corresponding resource.
- */
- boolean isPureVirtual() throws CModelException;
-
- /**
- * Returns if this method is static or not
- * @return boolean
- */
- public boolean isStatic() throws CModelException;
-
- /**
- * Returns if this method is inline or not
- * @return boolean
- */
- public boolean isInline() throws CModelException;
-
- /**
- * Returns whether this method is declared virtual.
- *
- * @exception CModelException if this element does not exist or if an
- * exception occurs while accessing its corresponding resource.
- */
- boolean isVirtual() throws CModelException;
-
- /**
- * return true if the member is a friend.
- */
- public boolean isFriend() throws CModelException;
-
-}

Back to the top