소스 검색

231396: refactoring:

tags/V1_6_1x
aclement 16 년 전
부모
커밋
0d9e923051
2개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 5
    0
      bridge/src/org/aspectj/bridge/ISourceLocation.java
  2. 4
    0
      bridge/src/org/aspectj/bridge/SourceLocation.java

+ 5
- 0
bridge/src/org/aspectj/bridge/ISourceLocation.java 파일 보기

@@ -19,6 +19,11 @@ import java.io.File;
/**
* Represent source location as a starting line/column and ending
* line in a source file.
* Implementations should be immutable. XXX why?
* @see org.aspectj.lang.reflect.SourceLocation
* @see org.aspectj.compiler.base.parser.SourceInfo
* @see org.aspectj.tools.ide.SourceLine
* @see org.aspectj.testing.harness.ErrorLine
*/
public interface ISourceLocation {
static final int MAX_LINE = Integer.MAX_VALUE / 2;

+ 4
- 0
bridge/src/org/aspectj/bridge/SourceLocation.java 파일 보기

@@ -22,6 +22,10 @@ import org.aspectj.util.LangUtil;
* Immutable source location.
* This guarantees that the source file is not null
* and that the numeric values are positive and line <= endLine.
* @see org.aspectj.lang.reflect.SourceLocation
* @see org.aspectj.compiler.base.parser.SourceInfo
* @see org.aspectj.tools.ide.SourceLine
* @see org.aspectj.testing.harness.ErrorLine
*/
public class SourceLocation implements ISourceLocation, java.io.Serializable {

Loading…
취소
저장