blob: 1189c5fbc71e79789a303d2a47a6468f0c470438 [file] [log] [blame]
/****************************************************************
* Licensed to the Apache Software Foundation (ASF) under one *
* or more contributor license agreements. See the NOTICE file *
* distributed with this work for additional information *
* regarding copyright ownership. The ASF licenses this file *
* to you 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 org.apache.hupa.client.gin;
import net.customware.gwt.dispatch.client.gin.StandardDispatchModule;
import net.customware.gwt.presenter.client.EventBus;
import net.customware.gwt.presenter.client.place.PlaceManager;
import org.apache.hupa.client.mvp.AppPresenter;
import org.apache.hupa.client.rf.HupaRequestFactory;
import com.google.gwt.inject.client.GinModules;
import com.google.gwt.inject.client.Ginjector;
<<<<<<< HEAD
<<<<<<< HEAD
@GinModules({/*StandardDispatchModule.class,*/ HupaClientModule.class})
=======
@GinModules({StandardDispatchModule.class,HupaClientModule.class})
>>>>>>> first commit
=======
@GinModules({/*StandardDispatchModule.class,*/ HupaClientModule.class})
>>>>>>> constantly changed by manolo
public interface HupaGinjector extends Ginjector {
AppPresenter getAppPresenter();
PlaceManager getPlaceManager();
EventBus getEventBus();
HupaRequestFactory getRequestFactory();
}