Package org.apache.isis.core.commons.exceptions

Examples of org.apache.isis.core.commons.exceptions.UnexpectedCallException


        return false;
    }

    @Override
    public boolean isEmpty(final ObjectAdapter inObject) {
        throw new UnexpectedCallException();
    }
View Full Code Here


        throw new UnexpectedCallException();
    }

    @Override
    public boolean isMandatory() {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return null;
    }

    @Override
    protected T doParse(final Object original, final String entry) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // execute
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter execute(final ObjectAdapter target, final ObjectAdapter[] parameters) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return null;
    }

    @Override
    public Consent isProposedArgumentSetValid(final ObjectAdapter object, final ObjectAdapter[] parameters) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // defaults
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter[] getDefaults(final ObjectAdapter target) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // options
    // /////////////////////////////////////////////////////////////

    @Override
    public ObjectAdapter[][] getChoices(final ObjectAdapter target) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        final int pos = actionIdentifier.indexOf('#');

        final String methodName = actionIdentifier.substring(pos + 1);

        if (adapter == null) {
            throw new UnexpectedCallException("object not specified");
        }
        return adapter.getSpecification().getObjectAction(type, methodName, parameterSpecs);
    }
View Full Code Here

    }

    // TODO remove
    @Override
    protected void buildView() {
        throw new UnexpectedCallException();
    }
View Full Code Here

        }
        final GlobalViewFactory factory = Toolkit.getViewFactory();
        ViewSpecification cellSpec;
        Content content;
        if (field instanceof OneToManyAssociation) {
            throw new UnexpectedCallException("no collections allowed");
        } else if (field instanceof OneToOneAssociation) {

            final ObjectSpecification fieldSpecification = field.getSpecification();
            if (fieldSpecification.isParseable()) {
                content = new TextParseableFieldImpl(object, value, (OneToOneAssociation) field);
View Full Code Here

TOP

Related Classes of org.apache.isis.core.commons.exceptions.UnexpectedCallException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.