001 /*
002 * To change this template, choose Tools | Templates
003 * and open the template in the editor.
004 */
005
006 package org.bridj.cpp.mfc;
007
008 import java.lang.reflect.Method;
009
010 /**
011 *
012 * @author Olivier
013 */
014 public class MessageMapBuilder {
015
016 void add(Method method, OnCommand onCommand) {
017 throw new UnsupportedOperationException("Not yet implemented");
018 }
019
020 void add(Method method, OnCommandEx onCommandEx) {
021 throw new UnsupportedOperationException("Not yet implemented");
022 }
023
024 void add(Method method, OnUpdateCommand onUpdateCommand) {
025 throw new UnsupportedOperationException("Not yet implemented");
026 }
027
028 void add(Method method, OnRegisteredMessage onRegisteredMessage) {
029 throw new UnsupportedOperationException("Not yet implemented");
030 }
031
032 void add(Method method, OnMessage onMessage) {
033 throw new UnsupportedOperationException("Not yet implemented");
034 }
035
036 boolean isEmpty() {
037 throw new UnsupportedOperationException("Not yet implemented");
038 }
039
040 void register(MFCRuntime rt, Class<?> type) {
041 throw new UnsupportedOperationException("Not yet implemented");
042 }
043 }