Package org.apache.isis.object

Examples of org.apache.isis.object.ObjectAdapterRuntimeException


        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));
      }
  }
View Full Code Here


            } else if (content instanceof ValueContent) {
                specification = factory.getValueFieldSpecification((ValueContent) content);
            } else if (content instanceof ObjectContent) {
                specification = factory.getIconizedSubViewSpecification((ObjectContent) content);
            } else {
                throw new ObjectAdapterRuntimeException();
            }

            return specification.createView(content, axis);
        }
View Full Code Here

        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));
      }
  }
View Full Code Here

TOP

Related Classes of org.apache.isis.object.ObjectAdapterRuntimeException

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.