[Mongobrowser-commit] SF.net SVN: mongobrowser:[41] trunk/mongobrowser/src/com/mebigfatguy/ mongob
Status: Pre-Alpha
Brought to you by:
dbrosius
From: <dbr...@us...> - 2009-12-27 17:20:00
|
Revision: 41 http://mongobrowser.svn.sourceforge.net/mongobrowser/?rev=41&view=rev Author: dbrosius Date: 2009-12-27 17:19:53 +0000 (Sun, 27 Dec 2009) Log Message: ----------- pull out NewKeyValue action to a separate class Added Paths: ----------- trunk/mongobrowser/src/com/mebigfatguy/mongobrowser/actions/NewKeyValueAction.java Added: trunk/mongobrowser/src/com/mebigfatguy/mongobrowser/actions/NewKeyValueAction.java =================================================================== --- trunk/mongobrowser/src/com/mebigfatguy/mongobrowser/actions/NewKeyValueAction.java (rev 0) +++ trunk/mongobrowser/src/com/mebigfatguy/mongobrowser/actions/NewKeyValueAction.java 2009-12-27 17:19:53 UTC (rev 41) @@ -0,0 +1,43 @@ +/* + * mongobrowser - a webstart gui application for viewing, + * editing and administering a Mongo Database + * Copyright 2009 MeBigFatGuy.com + * Copyright 2009 Dave Brosius + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and limitations + * under the License. + */ +package com.mebigfatguy.mongobrowser.actions; + +import java.awt.event.ActionEvent; + +import javax.swing.AbstractAction; + +import com.mebigfatguy.mongobrowser.MongoBundle; +import com.mebigfatguy.mongobrowser.MongoContext; + +public class NewKeyValueAction extends AbstractAction { + + private static final long serialVersionUID = -500965537578361564L; + private MongoContext context; + + public NewKeyValueAction(MongoContext ctxt) { + super(MongoBundle.getString(MongoBundle.Key.NewKeyValue)); + context = ctxt; + } + + @Override + public void actionPerformed(ActionEvent e) { + // TODO Auto-generated method stub + } + +} Property changes on: trunk/mongobrowser/src/com/mebigfatguy/mongobrowser/actions/NewKeyValueAction.java ___________________________________________________________________ Added: svn:mime-type + text/plain Added: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |