package com.onaro.sanscreen.client.view.task.actions; import com.onaro.sanscreen.task.interfaces.data.actions.AddNewTapeAction; /** * Add new tape UI action, the result of refactoring of ActionType to ActionUIType. * * @author Anton Sergeev */ public class AddNewTapeActionUI extends AddNewDeviceActionUI { public static final String RESOURCE_PREFIX = "action." + AddNewTapeAction.TYPE.getName() + "."; //$NON-NLS-1$ //$NON-NLS-2$ public AddNewTapeActionUI() { super(new AddNewTapeAction()); } public String getResourcePrefix() { return RESOURCE_PREFIX; } }