1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Formatting.

This commit is contained in:
Sergey Prigogin 2008-12-22 02:00:36 +00:00
parent 46ab6162f7
commit 9549322f5d

View file

@ -17,11 +17,10 @@ import org.eclipse.cdt.core.dom.ast.DOMException;
* *
* @author Doug Schaefer * @author Doug Schaefer
*/ */
public interface ICPPMember extends ICPPBinding{ public interface ICPPMember extends ICPPBinding {
/** /**
* The visibility. * The visibility.
*
*/ */
public int getVisibility() throws DOMException; public int getVisibility() throws DOMException;
@ -32,5 +31,4 @@ public interface ICPPMember extends ICPPBinding{
public static final int v_public = ICPPASTVisibilityLabel.v_public; public static final int v_public = ICPPASTVisibilityLabel.v_public;
public ICPPClassType getClassOwner() throws DOMException; public ICPPClassType getClassOwner() throws DOMException;
} }