mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
15 lines
286 B
Java
15 lines
286 B
Java
class X {
|
|
public class ObjectValue {
|
|
public ObjectValue get(String name) { return null; }
|
|
}
|
|
|
|
public class JsonObjectValue extends ObjectValue {
|
|
public int sizeInBytes() { return 0; }
|
|
}
|
|
|
|
{
|
|
JsonObjectValue obj = null;
|
|
obj.get("href").siz<caret>eInBytes();
|
|
}
|
|
|
|
} |