-
Bug
-
Resolution: Unresolved
-
P3
-
8
Using the attached javac-compiler-args.txt,
bash-4.1$ javac @java-compiler-args.txt
/scratch/jgish/weblogic/dev/src1222/mod/core/utilities/time/src/main/java/weblogic/time/t3client/internal/TimeProxy.java:13: error: cannot access Manufacturable
final public class TimeProxy implements T3Executable {
^
class file for weblogic.common.internal.Manufacturable not found
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
bash-4.1$
bash-4.1$ javap /scratch/jgish/weblogic/src1222_build/work/core/utilities/time/classes/main/weblogic/time/t3client/internal/TimeProxy.class
Compiled from "TimeProxy.java"
public final class weblogic.time.t3client.internal.TimeProxy {
public void initialize();
public void destroy();
public java.lang.Object execute(weblogic.t3.srvr.ExecutionContext, java.lang.Object) throws weblogic.common.T3Exception;
}
bash-4.1$
Adding the missing dependency yields:
bash-4.1$ javac @java-compiler-args.txt
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
bash-4.1$
and
bash-4.1$ javap /scratch/jgish/weblogic/src1222_build/work/core/utilities/time/classes/main/weblogic/time/t3client/internal/TimeProxy.class
Compiled from "TimeProxy.java"
public final class weblogic.time.t3client.internal.TimeProxy implements weblogic.common.T3Executable {
public weblogic.time.t3client.internal.TimeProxy();
public void initialize();
public void destroy();
public java.lang.Object execute(weblogic.t3.srvr.ExecutionContext, java.lang.Object) throws weblogic.common.T3Exception;
}
bash-4.1$
bash-4.1$ javac @java-compiler-args.txt
/scratch/jgish/weblogic/dev/src1222/mod/core/utilities/time/src/main/java/weblogic/time/t3client/internal/TimeProxy.java:13: error: cannot access Manufacturable
final public class TimeProxy implements T3Executable {
^
class file for weblogic.common.internal.Manufacturable not found
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
bash-4.1$
bash-4.1$ javap /scratch/jgish/weblogic/src1222_build/work/core/utilities/time/classes/main/weblogic/time/t3client/internal/TimeProxy.class
Compiled from "TimeProxy.java"
public final class weblogic.time.t3client.internal.TimeProxy {
public void initialize();
public void destroy();
public java.lang.Object execute(weblogic.t3.srvr.ExecutionContext, java.lang.Object) throws weblogic.common.T3Exception;
}
bash-4.1$
Adding the missing dependency yields:
bash-4.1$ javac @java-compiler-args.txt
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
bash-4.1$
and
bash-4.1$ javap /scratch/jgish/weblogic/src1222_build/work/core/utilities/time/classes/main/weblogic/time/t3client/internal/TimeProxy.class
Compiled from "TimeProxy.java"
public final class weblogic.time.t3client.internal.TimeProxy implements weblogic.common.T3Executable {
public weblogic.time.t3client.internal.TimeProxy();
public void initialize();
public void destroy();
public java.lang.Object execute(weblogic.t3.srvr.ExecutionContext, java.lang.Object) throws weblogic.common.T3Exception;
}
bash-4.1$