Package org.apache.isis.viewer.dnd.special

Source Code of org.apache.isis.viewer.dnd.special.ScheduleBlockSpecification

/*
*  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.special;

import org.apache.isis.object.ObjectAdapterRuntimeException;
import org.apache.isis.object.ObjectSpecification;
import org.apache.isis.object.ObjectSpecificationLoader;
import org.apache.isis.object.reflect.ObjectField;
import org.apache.isis.viewer.dnd.Content;
import org.apache.isis.viewer.dnd.ObjectContent;
import org.apache.isis.viewer.dnd.View;
import org.apache.isis.viewer.dnd.ViewAxis;
import org.apache.isis.viewer.dnd.basic.SimpleIdentifier;
import org.apache.isis.viewer.dnd.core.AbstractCompositeViewSpecification;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class ScheduleBlockSpecification extends AbstractCompositeViewSpecification{
  private static final Logger LOG = LoggerFactory.getLogger(ScheduleBlockView.class);

  public View createView(Content content, ViewAxis axis) {
      ObjectSpecification nc = ((ObjectContent) content).getObject().getSpecification();
      ObjectField[] flds = nc.getFields();
      ObjectField timePeriodField = null;
      ObjectField colorField = null;
      for (int i = 0; i < flds.length; i++) {
      ObjectField field = flds[i];
      if(field.getType().isOfType(Isis.getSpecificationLoader().loadSpecification(TimePeriod.class))) {
        LOG.debug("found TimePeriod field " + field);
        timePeriodField = field;
      }
      if(field.getType().isOfType(Isis.getSpecificationLoader().loadSpecification(org.apache.isis.application.value.Color.class))) {
        LOG.debug("found Color field " + field);
        colorField = field;
      }
    }
      if(timePeriodField == null) {
          throw new ObjectAdapterRuntimeException("Can't create Shedule view without a TimePeriod");
      } else {
        return new SimpleIdentifier(new ScheduleBlockView(content, this, axis, timePeriodField, colorField));
      }
  }
 
  public String getName() {
    return "Schedule Block";
  }
}
TOP

Related Classes of org.apache.isis.viewer.dnd.special.ScheduleBlockSpecification

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.