Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
bc672a217a7a888d1cc2d7d53216aba8a1cd6628
/
.
/
bundleplugin
/
src
/
main
/
java
/
aQute
/
lib
/
codec
/
Codec.java
blob: 6de09cf2109f50941c9879c61316d4e26656d750 [
file
] [
log
] [
blame
]
package
aQute
.
lib
.
codec
;
import
java
.
io
.*;
import
java
.
lang
.
reflect
.*;
public
interface
Codec
{
Object
decode
(
Reader
in
,
Type
type
)
throws
Exception
;
void
encode
(
Type
t
,
Object
o
,
Appendable
out
)
throws
Exception
;
}