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

com.smartdevicelink.proxy.rpc.SeatLocation Maven / Gradle / Ivy

Go to download

The app library component of SDL is meant to run on the end user’s smart-device from within SDL enabled apps, as an embedded app, or connected to the cloud. App libraries allow the apps to connect to SDL enabled head-units and hardware through bluetooth, USB, and TCP for Android, and cloud and embedded apps can connect through web sockets, Java Beans, and other custom transports. Once the library establishes a connection between the smart device and head-unit through the preferred method of transport, the two components are able to communicate using the SDL defined protocol. The app integrating this library project is then able to expose its functionality to the head-unit through text, media, and other interactive elements.

There is a newer version: 5.7.0
Show newest version
package com.smartdevicelink.proxy.rpc;

import com.smartdevicelink.proxy.RPCStruct;

import java.util.Hashtable;

public class SeatLocation extends RPCStruct {
    public static final String KEY_GRID = "grid";

    public SeatLocation() {
    }

    public SeatLocation(Hashtable hash) {
        super(hash);
    }

    /**
     * Sets grid data for this seat location
     *
     * @param grid the grid to be set
     */
    public SeatLocation setGrid(Grid grid) {
        setValue(KEY_GRID, grid);
        return this;
    }

    /**
     * Gets the Grid of this seat location
     *
     * @return the grid of this seat location
     */
    public Grid getGrid() {
        return (Grid) getObject(Grid.class, KEY_GRID);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy