Skip to content

Commit 7c5eb20

Browse files
committed
Add Meta::toString
1 parent de98f61 commit 7c5eb20

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/org/freedesktop/gstreamer/Meta.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@ protected Meta(Handle handle) {
5252
super(handle);
5353
}
5454

55+
@Override
56+
public String toString() {
57+
GstMetaPtr pointer = (GstMetaPtr)this.getPointer();
58+
return "[meta : gType=" + pointer.getGType() + "]";
59+
}
60+
5561
/**
5662
* NativeObject.Handle implementation.
5763
*/

0 commit comments

Comments
 (0)