diff options
Diffstat (limited to 'org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java')
-rw-r--r-- | org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java b/org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java index 0f2f0aba1..5af15d6f5 100644 --- a/org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java +++ b/org.aspectj.matcher/src/main/java/org/aspectj/weaver/ISourceContext.java @@ -1,13 +1,13 @@ /* ******************************************************************* * Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). - * 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: - * PARC initial implementation + * 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: + * PARC initial implementation * ******************************************************************/ package org.aspectj.weaver; @@ -15,11 +15,11 @@ package org.aspectj.weaver; import org.aspectj.bridge.ISourceLocation; public interface ISourceContext { - public ISourceLocation makeSourceLocation(IHasPosition position); + ISourceLocation makeSourceLocation(IHasPosition position); - public ISourceLocation makeSourceLocation(int line, int offset); + ISourceLocation makeSourceLocation(int line, int offset); - public int getOffset(); + int getOffset(); - public void tidy(); + void tidy(); } |