public class InsertAction implements Action {
private String path;
public InsertAction(String path) {
super();
this.path = path;
}
이 부분 하는데 앞부분 퍼블릭 클래스 인서트액션이 계속 빨간줄 나오는거임.. 임포트 다 제대로 한것같은데 왜 그런거에요?
public class InsertAction implements Action {
private String path;
public InsertAction(String path) {
super();
this.path = path;
}
이 부분 하는데 앞부분 퍼블릭 클래스 인서트액션이 계속 빨간줄 나오는거임.. 임포트 다 제대로 한것같은데 왜 그런거에요?
댓글 0