001/** 002 * Unit-API - Units of Measurement API for Java 003 * Copyright (c) 2014 Jean-Marie Dautelle, Werner Keil, V2COM 004 * All rights reserved. 005 * 006 * See LICENSE.txt for details. 007 */ 008package javax.measure.quantity; 009 010import javax.measure.Quantity; 011 012 013/** 014 * Energy multiplied by a duration (quantity associated to the 015 * <a href="http://en.wikipedia.org/wiki/Planck%27s_constant">Planck Constant</a>). 016 * The system unit for this quantity is "J.s" (joules second). 017 * 018 * @author <a href="mailto:[email protected]">Jean-Marie Dautelle</a> 019 * @version 1.1 020 * 021 * @see <a href="http://en.wikipedia.org/wiki/Action_(physics)">Wikipedia: Action</a> 022 */ 023public interface Action extends Quantity<Action> { 024}