// -*- mode: java; c-basic-offset: 2; -*- // Copyright 2009-2011 Google, All Rights reserved // Copyright 2011-2012 MIT, All rights reserved // Released under the Apache License, Version 2.0 // http://www.apache.org/licenses/LICENSE-2.0 package com.google.appinventor.client.editor.simple.components; /** * A Layout that arranges the children of a container in a single column or a * single row. * Note: Right now this doesn't do any more than the base class, but it is * here for clarity and in case it someday needs additional functionality. * * @author sharon@google.com (Sharon Perl) */ final class MockHVLayout extends MockHVLayoutBase { /** * Creates a new linear layout with the specified orientation. */ MockHVLayout(int orientation) { super(orientation); } }