12 lines
274 B
Java
12 lines
274 B
Java
|
package org.capnproto;
|
||
|
|
||
|
public final class MessageBuilder {
|
||
|
public <T> T getRoot(FromStructBuilder<T> factory) {
|
||
|
throw new Error("unimplemented");
|
||
|
}
|
||
|
|
||
|
public <T> T initRoot(FromStructBuilder<T> factory) {
|
||
|
throw new Error("unimplemented");
|
||
|
}
|
||
|
}
|