blob: 2e68b101f608207d43e763a08c38b301bb1a66e0 [file] [log] [blame]
// Copyright 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.enhance;
import org.apache.hivemind.ErrorLog;
import org.apache.hivemind.util.Defense;
import org.apache.tapestry.internal.event.IComponentEventInvoker;
import org.apache.tapestry.spec.IComponentSpecification;
/**
* Injects the component's event invoker as the
* {@link org.apache.tapestry.IComponent#getEventInvoker() eventInvoker}property.
*
* @author jkuhnert
* @since 4.1
*/
public class InjectEventInvokerWorker implements EnhancementWorker
{
public static final String PROPERTY_NAME = "eventInvoker";
private ErrorLog _errorLog;
private IComponentEventInvoker _invoker;
public void performEnhancement(EnhancementOperation op, IComponentSpecification spec)
{
try
{
injectEventInvoker(op, spec);
}
catch (Exception ex)
{
_errorLog.error(EnhanceMessages.errorAddingProperty(
PROPERTY_NAME, op.getBaseClass(), ex), spec
.getLocation(), ex);
}
}
public void injectEventInvoker(EnhancementOperation op, IComponentSpecification spec)
{
Defense.notNull(op, "op");
Defense.notNull(spec, "spec");
op.claimReadonlyProperty(PROPERTY_NAME);
String fieldName = op.addInjectedField("_$"
+ PROPERTY_NAME, IComponentEventInvoker.class,
_invoker);
EnhanceUtils.createSimpleAccessor(op, fieldName,
PROPERTY_NAME, IComponentEventInvoker.class,
spec.getLocation());
}
public void setErrorLog(ErrorLog errorLog)
{
_errorLog = errorLog;
}
public void setComponentEventInvoker(IComponentEventInvoker invoker)
{
_invoker = invoker;
}
}