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

com.goodow.realtime.custom.Custom Maven / Gradle / Ivy

/*
 * Copyright 2012 Goodow.com
 * 
 * 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.goodow.realtime.custom;

import com.goodow.realtime.DocumentLoadedHandler;
import com.goodow.realtime.Model;
import com.goodow.realtime.ModelInitializerHandler;
import com.goodow.realtime.model.util.ModelFactory;

import org.timepedia.exporter.client.Export;
import org.timepedia.exporter.client.ExportPackage;
import org.timepedia.exporter.client.Exportable;

/**
 * A namespace that includes methods for registering and working with custom collaborative objects.
 */
@ExportPackage("")
@Export(ModelFactory.PACKAGE_PREFIX_CUSTOM)
public class Custom implements Exportable {
  /**
   * Returns a reference that can be assigned to an object prototype field of a custom collaborative
   * object in order to define custom collaborative properties. For example: MyClass.prototype.name
   * = gapi.drive.realtime.custom.collaborativeField('name'); The resulting field can be read and
   * assigned to like a regular field, but the value will automatically be saved and sent to other
   * collaborators.
   * 
   * @param name The stable field name.
   * @return A dynamic property identifier.
   */
  public static Object collaborativeField(String name) {
    return null;
  }

  /**
   * Returns the id of the given custom object.
   * 
   * @param obj A custom object.
   * @return The object id.
   */
  public static String getId(Object obj) {
    return null;
  }

  /**
   * Returns the model for the given custom object.
   * 
   * @param obj A custom object.
   * @return The collaborative model for the given object.
   */
  public static Model getModel(Object obj) {
    return null;
  }

  /**
   * Returns true if obj is a custom collaborative object, otherwise false.
   * 
   * @param obj A custom object.
   * @return true if obj is a custom collaborative object, otherwise false.
   */
  public static boolean isCustomObject(Object obj) {
    return false;
  }

  /**
   * Registers a user-defined type as a collaborative type. This must be called before
   * {@link com.goodow.realtime.Realtime#load(String, DocumentLoadedHandler, ModelInitializerHandler, com.goodow.realtime.Error.ErrorHandler)}
   * 
   * @param type The type to register.
   * @param name A name to use for this type.
   */
  public static void registerType(Object type, String name) {
  }

  /**
   * Sets the initializer function for the given type. The type must have already been registered
   * with a call to registerType.
   * 
   * @param type The type to register.
   * @param initializer An initializer function that will be called in the context of the
   *          initialized object.
   */
  public static void setInitializer(Object type, ModelInitializerHandler initializer) {
  }

  /**
   * Sets the onLoaded function for the given type. The type must have already been registered with
   * a call to registerType.
   * 
   * @param type The type to register.
   * @param opt_onLoaded An optional onLoaded function that will be called in the context of the
   *          newly-loaded object. If not specified, a default onLoaded handler will be used.
   */
  public static void setOnLoaded(Object type, DocumentLoadedHandler opt_onLoaded) {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy