All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gwtplatform.mvp.client.View Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/**
 * Copyright 2010 ArcBees Inc.
 * 
 * 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.gwtplatform.mvp.client;

import com.google.gwt.user.client.ui.Widget;

/**
 * The interface for view classes that handles all the UI-related code for a
 * {@link Presenter}.
 * 
 * @author Philippe Beaudoin
 * @author Christian Goudreau
 */
public interface View {

  /**
   * Requests the view to add content within a specific slot.
   * 

* Override the default implementation and manage all the slots of your view * into which content can be added. You should also consider overriding * {@link #removeFromSlot(Object, com.google.gwt.user.client.ui.Widget)}. * If the view doesn't know about this slot, it can silently ignore the request. *

* Used by {@link PresenterWidget#addToSlot(Object, PresenterWidget)}. * * @param slot An opaque object indicating the slot to add into. * @param content The content to add, a {@link Widget}. */ void addToSlot(Object slot, Widget content); /** * Retrieves this view as a {@link Widget} so that it can be inserted within * the DOM. * * @return This view as a DOM object. */ Widget asWidget(); /** * Requests the view to remove content from a specific slot. *

* Override the default implementation and manage all the slots of your view * into which content can be added and removed. You should also override * {@link #addToSlot(Object, com.google.gwt.user.client.ui.Widget)}. * If the view doesn't know about this slot, it can silently ignore the request. *

* Used by {@link PresenterWidget#removeFromSlot(Object, PresenterWidget)}. * * @param slot An opaque object indicating the slot to remove from. * @param content The content to remove, a {@link Widget}. */ void removeFromSlot(Object slot, Widget content); /** * Requests the view to set content within a specific slot, clearing anything * that was already contained there. *

* Override the default implementation and manage all the slots of your view * into which content can be placed. If the view doesn't know about this slot, * it can silently ignore the request. When {@code null} is passed, your * implementation should clear the slot. *

* Used by {@link PresenterWidget#setInSlot(Object, PresenterWidget)} and * {@link PresenterWidget#clearSlot(Object)}. * * @param slot An opaque object indicating the slot to add into. * @param content The content to add, a {@link Widget}. Pass {@code null} to * clear the slot entirely. */ void setInSlot(Object slot, Widget content); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy