Package org.apache.isis.viewer.dnd.view.lookup

Source Code of org.apache.isis.viewer.dnd.view.lookup.OpenValueDropDownBorder

/*
*  Licensed to the Apache Software Foundation (ASF) under one
*  or more contributor license agreements.  See the NOTICE file
*  distributed with this work for additional information
*  regarding copyright ownership.  The ASF licenses this file
*  to you under the Apache License, Version 2.0 (the
*  "License"); you may not use this file except in compliance
*  with the License.  You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*/

package org.apache.isis.viewer.dnd.view.lookup;

import org.apache.isis.core.metamodel.adapter.ObjectAdapter;
import org.apache.isis.viewer.dnd.view.Axes;
import org.apache.isis.viewer.dnd.view.Content;
import org.apache.isis.viewer.dnd.view.View;
import org.apache.isis.viewer.dnd.view.action.ParameterContent;
import org.apache.isis.viewer.dnd.view.base.TextView;
import org.apache.isis.viewer.dnd.view.content.TextParseableContent;
import org.apache.isis.viewer.dnd.view.field.TextParseableField;

public class OpenValueDropDownBorder extends OpenDropDownBorder {
    private static final SelectionListSpecification spec = new SelectionListSpecification() {
        @Override
        protected View createElementView(final Content content) {
            return new TextView(content, this);
        }
    };

    public OpenValueDropDownBorder(final View wrappedView) {
        super(wrappedView);
    }

    @Override
    protected View createDropDownView() {
        final Axes viewAxes = getViewAxes();
        viewAxes.add(new SelectionListAxis(this), SelectionListAxis.class);
        return spec.createView(getContent(), viewAxes, -1);
    }

    @Override
    protected boolean isAvailable() {
        final Content content = getContent();
        if (content instanceof TextParseableField) {
            final TextParseableField oneToOneField = ((TextParseableField) content);
            return oneToOneField.isEditable().isAllowed();
        } else if (content instanceof ParameterContent) {
            return true;
        } else {
            return false;
        }

    }

    @Override
    protected void setSelection(final OptionContent selectedContent) {
        final ObjectAdapter option = selectedContent.getAdapter();
        final TextParseableContent content = (TextParseableContent) getContent();
        content.parseTextEntry(option.titleString());
        content.entryComplete();
    }
}
TOP

Related Classes of org.apache.isis.viewer.dnd.view.lookup.OpenValueDropDownBorder

TOP
Copyright © 2018 www.massapi.com. 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.