Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
21434cfc
Commit
21434cfc
authored
Nov 27, 2000
by
Anthony Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More new classes.
From-SVN: r37786
parent
f24dbacf
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
232 additions
and
0 deletions
+232
-0
libjava/javax/naming/NameParser.java
+16
-0
libjava/javax/naming/directory/AttributeInUseException.java
+24
-0
libjava/javax/naming/directory/AttributeModificationException.java
+24
-0
libjava/javax/naming/directory/InvalidAttributeIdentifierException.java
+24
-0
libjava/javax/naming/directory/InvalidAttributeValueException.java
+24
-0
libjava/javax/naming/directory/InvalidAttributesException.java
+24
-0
libjava/javax/naming/directory/InvalidSearchControlsException.java
+24
-0
libjava/javax/naming/directory/InvalidSearchFilterException.java
+24
-0
libjava/javax/naming/directory/NoSuchAttributeException.java
+24
-0
libjava/javax/naming/directory/SchemaViolationException.java
+24
-0
No files found.
libjava/javax/naming/NameParser.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
public
interface
NameParser
{
public
Name
parse
(
String
name
)
throws
NamingException
;
}
libjava/javax/naming/directory/AttributeInUseException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
AttributeInUseException
extends
NamingException
{
public
AttributeInUseException
()
{
super
();
}
public
AttributeInUseException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/AttributeModificationException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
AttributeModificationException
extends
NamingException
{
public
AttributeModificationException
()
{
super
();
}
public
AttributeModificationException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/InvalidAttributeIdentifierException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
InvalidAttributeIdentifierException
extends
NamingException
{
public
InvalidAttributeIdentifierException
()
{
super
();
}
public
InvalidAttributeIdentifierException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/InvalidAttributeValueException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
InvalidAttributeValueException
extends
NamingException
{
public
InvalidAttributeValueException
()
{
super
();
}
public
InvalidAttributeValueException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/InvalidAttributesException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
InvalidAttributesException
extends
NamingException
{
public
InvalidAttributesException
()
{
super
();
}
public
InvalidAttributesException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/InvalidSearchControlsException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
InvalidSearchControlsException
extends
NamingException
{
public
InvalidSearchControlsException
()
{
super
();
}
public
InvalidSearchControlsException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/InvalidSearchFilterException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
InvalidSearchFilterException
extends
NamingException
{
public
InvalidSearchFilterException
()
{
super
();
}
public
InvalidSearchFilterException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/NoSuchAttributeException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
NoSuchAttributeException
extends
NamingException
{
public
NoSuchAttributeException
()
{
super
();
}
public
NoSuchAttributeException
(
String
msg
)
{
super
(
msg
);
}
}
libjava/javax/naming/directory/SchemaViolationException.java
0 → 100644
View file @
21434cfc
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package
javax
.
naming
;
import
java.lang.Exception
;
public
class
SchemaViolationException
extends
NamingException
{
public
SchemaViolationException
()
{
super
();
}
public
SchemaViolationException
(
String
msg
)
{
super
(
msg
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment