blob: 2e5958b9a456a9065ecb089f963b89760508b78e [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed 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.tapestry.engine;
import org.apache.hivemind.Resource;
import org.apache.tapestry.INamespace;
import org.apache.tapestry.spec.IComponentSpecification;
import org.apache.tapestry.spec.ILibrarySpecification;
/**
* Defines access to component specifications.
*
* @see IComponentSpecification
* @author Howard Lewis Ship
*/
public interface ISpecificationSource
{
/**
* Retrieves a component specification, parsing it as necessary.
*
* @param specificationLocation
* the location where the specification may be read from.
* @throws org.apache.hivemind.ApplicationRuntimeException
* if the specification doesn't exist, is unreadable or invalid.
* @since 2.2
*/
IComponentSpecification getComponentSpecification(
Resource specificationLocation);
/**
* Retrieves a page specification, parsing it as necessary.
*
* @param specificationLocation
* the location where the specification may be read from.
* @throws org.apache.hivemind.ApplicationRuntimeException
* if the specification doesn't exist, is unreadable or invalid.
* @since 2.2
*/
IComponentSpecification getPageSpecification(
Resource specificationLocation);
/**
* Returns a {@link org.apache.tapestry.spec.LibrarySpecification} with the
* given path.
*
* @param specificationLocation
* the resource path of the specification to return
* @throws org.apache.hivemind.ApplicationRuntimeException
* if the specification cannot be read
* @since 2.2
*/
ILibrarySpecification getLibrarySpecification(
Resource specificationLocation);
/**
* Returns the {@link INamespace} for the application.
*
* @since 2.2
*/
INamespace getApplicationNamespace();
/**
* Returns the {@link INamespace} for the framework itself.
*
* @since 2.2
*/
INamespace getFrameworkNamespace();
}