blob: 9beb6d11533650a60e8cd149465809d7713532b4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jdt.core.IAccessRule;
import org.eclipse.jdt.core.compiler.IProblem;
import org.eclipse.jdt.internal.compiler.env.AccessRule;
public class ClasspathAccessRule extends AccessRule implements IAccessRule {
public ClasspathAccessRule(IPath pattern, int kind) {
this(pattern.toString().toCharArray(), toProblemId(kind));
}
public ClasspathAccessRule(char[] pattern, int problemId) {
super(pattern, problemId);
}
private static int toProblemId(int kind) {
switch (kind) {
case K_NON_ACCESSIBLE:
return IProblem.ForbiddenReference;
case K_DISCOURAGED:
return IProblem.DiscouragedReference;
default:
return -1;
}
}
public IPath getPattern() {
return new Path(new String(this.pattern));
}
public int getKind() {
switch (this.problemId) {
case IProblem.ForbiddenReference:
return K_NON_ACCESSIBLE;
case IProblem.DiscouragedReference:
return K_DISCOURAGED;
default:
return K_ACCESSIBLE;
}
}
}