public Object readPropertyDirectly()

in cayenne-java-modules/src/main/java/org/apache/cayenne/example/persistent/auto/_Artist.java [55:68]


    public Object readPropertyDirectly(String propName) {
        if(propName == null) {
            throw new IllegalArgumentException();
        }

        switch(propName) {
            case "artistName":
                return this.artistName;
            case "paintings":
                return this.paintings;
            default:
                return super.readPropertyDirectly(propName);
        }
    }