001package org.kohsuke.args4j; 002 003/** 004 * Interface for objects that have associated objects that can 005 * provide args4j options and arguments. 006 * 007 * @author Jonathon Hare (jsh2@ecs.soton.ac.uk) 008 * 009 */ 010public interface CmdLineOptionsProvider { 011 /** 012 * @return the object providing options/arguments 013 */ 014 public Object getOptions(); 015}