Browse Source

231396: moved ConfigParser out of weaver jar

tags/V1_6_1x
aclement 16 years ago
parent
commit
376223395b

+ 1
- 1
ajde/src/org/aspectj/ajde/EditorAdapter.java View File

@@ -30,7 +30,7 @@ public interface EditorAdapter {
public void showSourceLine(String filePath, int lineNumber, boolean highlight);

/**
* Seek the editor to a {@link SourceLocation} and highlight if specified.
* Seek the editor to a SourceLocation and highlight if specified.
*/
public void showSourceLine(ISourceLocation sourceLocation, boolean highlight);


+ 1
- 1
ajde/src/org/aspectj/ajde/internal/LstBuildConfigFileParser.java View File

@@ -18,7 +18,7 @@ import java.io.File;
import java.util.ArrayList;
import java.util.List;

import org.aspectj.util.ConfigParser;
import org.aspectj.ajdt.ajc.ConfigParser;

/**
* @author Mik Kersten

+ 1
- 1
ajde/src/org/aspectj/ajde/internal/LstBuildConfigFileUpdater.java View File

@@ -29,9 +29,9 @@ import java.util.TreeSet;

import org.aspectj.ajde.Ajde;
import org.aspectj.ajde.ui.BuildConfigNode;
import org.aspectj.ajdt.ajc.ConfigParser;
import org.aspectj.bridge.IMessage;
import org.aspectj.bridge.Message;
import org.aspectj.util.ConfigParser;

/**
* Used for reading and writing build configuration (".lst") files.

+ 1
- 1
ajde/src/org/aspectj/ajde/internal/LstBuildConfigManager.java View File

@@ -27,10 +27,10 @@ import java.util.List;
import org.aspectj.ajde.Ajde;
import org.aspectj.ajde.ui.BuildConfigModel;
import org.aspectj.ajde.ui.BuildConfigNode;
import org.aspectj.ajdt.ajc.ConfigParser;
import org.aspectj.bridge.IMessage;
import org.aspectj.bridge.Message;
import org.aspectj.bridge.SourceLocation;
import org.aspectj.util.ConfigParser;
import org.aspectj.util.FileUtil;

/**

Loading…
Cancel
Save