Gitiles
Code Review
Sign In
gerrit.onosproject.org
/
onos-felix
/
282c0e0f1e36c0bc9f5163a318888a506cdf5d4e
/
.
/
bundleplugin
/
src
/
main
/
java
/
aQute
/
lib
/
codec
/
Codec.java
blob: 6072ebd3d36c9cf5e79c278eff0d6216682d953b [
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
;
}