Widevine sample player

For bug 4245169

Change-Id: Ie110d5603f19cd54878d2c4506e8ffad11207f10
This commit is contained in:
Gloria Wang
2011-04-06 10:28:00 -07:00
parent 1445a4288d
commit fc6f6134e9
46 changed files with 2011 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
/*
* (c)Copyright 2011 Widevine Technologies, Inc
*/
package com.widevine.demo;
public class AssetItem {
private String assetPath;
private String imagePath;
private String title;
public AssetItem() {
assetPath = null;
imagePath = null;
title = null;
}
public AssetItem(String assetPath, String imagePath, String title) {
this.assetPath = assetPath;
this.imagePath = imagePath;
this.title = title;
}
public String getAssetPath() {
return assetPath;
}
public String getImagePath() {
return imagePath;
}
public String getTitle() {
return title;
}
}