Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Schorn2010-08-27 09:01:29 +0000
committerMarkus Schorn2010-08-27 09:01:29 +0000
commitc31e996fc2028a85d4b2794e2a288285ed8e6807 (patch)
tree0e0869f52b2c78f5b26ac7b1bcfc48ad546fa247 /core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java
parentd3fcfea8f14545f4d418d6824b4b2b99fd7647be (diff)
downloadorg.eclipse.cdt-c31e996fc2028a85d4b2794e2a288285ed8e6807.tar.gz
org.eclipse.cdt-c31e996fc2028a85d4b2794e2a288285ed8e6807.tar.xz
org.eclipse.cdt-c31e996fc2028a85d4b2794e2a288285ed8e6807.zip
Bug 323723: Reduce usage of DOMExceptions.
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java18
1 files changed, 4 insertions, 14 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java
index 30b18017132..6c8add94b5c 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/cpp/CPPConstructorTemplate.java
@@ -1,39 +1,29 @@
/*******************************************************************************
- * Copyright (c) 2005 IBM Corporation and others.
+ * Copyright (c) 2005, 2010 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 - Initial API and implementation
+ * Andrew Niefer (IBM Corporation) - Initial API and implementation
*******************************************************************************/
-/*
- * Created on Mar 31, 2005
- */
package org.eclipse.cdt.internal.core.dom.parser.cpp;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPConstructor;
-/**
- * @author aniefer
- */
-public class CPPConstructorTemplate extends CPPMethodTemplate implements
- ICPPConstructor {
+public class CPPConstructorTemplate extends CPPMethodTemplate implements ICPPConstructor {
- /**
- * @param name
- */
public CPPConstructorTemplate(IASTName name) {
super(name);
- // TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.dom.ast.cpp.ICPPConstructor#isExplicit()
*/
public boolean isExplicit() {
+ // mstodo fix that
// TODO Auto-generated method stub
return false;
}

Back to the top