Author: husted Date: Mon Nov 27 06:35:22 2006 New Revision: 479638 URL: http://svn.apache.org/viewvc?view=rev&rev=479638 Log: WW-1520 Add missing file from r479236
Added: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/velocity/components/AutocompleterDirective.java Added: struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/velocity/components/AutocompleterDirective.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/velocity/components/AutocompleterDirective.java?view=auto&rev=479638 ============================================================================== --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/velocity/components/AutocompleterDirective.java (added) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/views/velocity/components/AutocompleterDirective.java Mon Nov 27 06:35:22 2006 @@ -0,0 +1,46 @@ +/* + * $Id$ + * + * 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.struts2.views.velocity.components; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.struts2.components.Autocompleter; +import org.apache.struts2.components.Bean; +import org.apache.struts2.components.Component; + +import com.opensymphony.xwork2.util.ValueStack; + +/** + * @see Autocompleter + */ +public class AutocompleterDirective extends AbstractDirective { + + protected Component getBean(ValueStack stack, HttpServletRequest req, + HttpServletResponse res) { + return new Autocompleter(stack, req, res); + } + + public String getBeanName() { + return "autocompleter"; + } + +}