forked from s-u/rJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.Rd
More file actions
37 lines (36 loc) · 677 Bytes
/
Copy pathloader.Rd
File metadata and controls
37 lines (36 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
\name{loader}
\alias{.jaddClassPath}
\alias{.jclassPath}
\title{
Java class loader
}
\description{
\code{.jaddClassPath} adds directories or JAR files to the class
path.
\code{.jclassPath} returns a vector containg the current entries in
the class path
}
\usage{
.jaddClassPath(path)
.jclassPath()
}
\arguments{
\item{path}{character string vector listing the paths to add to the
class path}
}
\value{
\code{.jclassPath} returns a charactger vector listing the class path sequence.
}
%\details{
%
%}
%\seealso{
% \code{\link{.jpackage}}
%}
\examples{
\dontrun{
.jaddClassPath("/my/jars/foo.jar","/my/classes/")
print(.jclassPath())
}
}
\keyword{interface}