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

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


        viewFactory = new GlobalViewFactory() {

            @Override
            public Enumeration<ViewSpecification> availableViews(final ViewRequirement viewRequirement) {
                throw new UnexpectedCallException();
            }

            @Override
            public View createDialog(final Content content) {
                throw new UnexpectedCallException();
            }

            @Override
            public DragEvent createDragContentOutline(final View view, final Location location) {
                throw new UnexpectedCallException();
            }

            @Override
            public View createDragViewOutline(final View view) {
                throw new UnexpectedCallException();
            }

            @Override
            public View createMinimizedView(final View view) {
                throw new UnexpectedCallException();
            }

            @Override
            public View createView(final ViewRequirement requirement) {
                return new DummyView();
            }

            @Override
            public void debugData(final DebugBuilder debug) {
            }

            @Override
            public String debugTitle() {
                throw new UnexpectedCallException();
            }

            @Override
            public void addSpecification(final ViewSpecification spec) {
            }
View Full Code Here


        return null;
    }

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

        }
    }

    @Override
    public void parseTextEntry(final String entryText) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        options.add(new ExplorationClone());
        options.add(new DebugClearResolvedOption());
    }

    public void parseTextEntry(final String entryText) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        return new StackLayout(true);
    }

    @Override
    public boolean canDisplay(final ViewRequirement requirement) {
        throw new UnexpectedCallException();
    }
View Full Code Here

        this.name = name.substring(name.lastIndexOf('.') + 1);
    }

    @Override
    public View createView(final Content content, final Axes axes, final int sequence) {
        throw new UnexpectedCallException();
    }
View Full Code Here

    // }}

    // {{ NotPersisted
    @NotPersisted
    public int getNotPersisted() {
        throw new UnexpectedCallException();
    }
View Full Code Here

    public void writeUser(final String user) {
    }

    @Override
    public StateWriter addAggregate(final String id) {
        throw new UnexpectedCallException();
    }
View Full Code Here

                final String time = reader.readTime();
                version = versionCreator.version(versionString, user, time);
            }
            if (version.different(object.getVersion())) {
                // TODO - do we need to CHECK version and update
                throw new UnexpectedCallException();
            } else {
                return object;
            }
        }
View Full Code Here

    // }}

    // {{ NotPersisted
    @NotPersisted
    public ExampleValuePojo getNotPersisted() {
        throw new UnexpectedCallException();
    }
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.