001 // Copyright 2010 Waterken Inc. under the terms of the MIT X license found at 002 // http://www.opensource.org/licenses/mit-license.html 003 package org.ref_send.scope; 004 005 /** 006 * An empty object. 007 */ 008 public final class 009 OK { 010 private OK() { /**/ } 011 012 /** 013 * The {@link OK} type. 014 */ 015 static public final Layout<OK> meta = Layout.define(); 016 017 /** 018 * Constructs an instance. 019 */ 020 static public Scope<OK> 021 ok() { return meta.make(); } 022 }