public List getProps()

in src/main/java/org/apache/sling/hapi/sightly/TypeView.java [120:127]


    public List<HApiProperty> getProps() {
        if (null == me) {
            return Collections.emptyList();
        }
        List<HApiProperty> props = new ArrayList<HApiProperty>(me.getAllProperties().values());
        LOG.debug("props: ", props);
        return props;
    }