Package org.gwtmultipage.gwt21disabled.rebind.selector

Source Code of org.gwtmultipage.gwt21disabled.rebind.selector.MultipageEntryPointSelector21

/*
* Copyright 2010 Brian Reilly
*
* 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.gwtmultipage.gwt21disabled.rebind.selector;

import com.google.gwt.core.ext.typeinfo.JClassType;
import org.gwtmultipage.client.MultipageEntryPoint;
import org.gwtmultipage.rebind.EntryPointFactoryImplGenerator;

/**
* Selects an entry point based on a MultipageEntryPoint annotation.
*
* @author claudiushauptmann
* @author brian.ireilly
* @deprecated only provides support for deprecated {@link MultipageEntryPoint}
*             annotation
*/
@Deprecated
public class MultipageEntryPointSelector21 extends BaseEntryPointSelector21 {

  public boolean canSelect(JClassType classType) {
    return getAnnotation(classType) != null;
  }

  @Override
  protected String generateMatchCondition(JClassType classType) {
    MultipageEntryPoint annotation = getAnnotation(classType);
    if (annotation != null) {
      return EntryPointFactoryImplGenerator.RELATIVE_PATH_VAR + ".matches(\"" + annotation.urlPattern() + "\")";
    } else {
      throw new RuntimeException(classType.getQualifiedSourceName()
          + " does not have a @MultipageEntryPoint annotation");
    }
  }

  private MultipageEntryPoint getAnnotation(JClassType classType) {
    return classType.getAnnotation(MultipageEntryPoint.class);
  }
}
TOP

Related Classes of org.gwtmultipage.gwt21disabled.rebind.selector.MultipageEntryPointSelector21

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.