Back to project page shareplay.
The source code is released under:
Copyright (c) 2014, Benjamin Damer All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: ...
If you think the Android project shareplay listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.afqa123.shareplay.data; //from w ww .j av a2 s . c om public class ContentCode { private int _number; private String _name; private short _code; public ContentCode() { } public ContentCode(final int number, final String name, final short code) { _number = number; _name = name; _code = code; } public int getNumber() { return _number; } public void setNumber(int number) { _number = number; } public String getName() { return _name; } public void setName(String name) { _name = name; } public short getCode() { return _code; } public void setCode(short code) { _code = code; } @Override public String toString() { return _number + " " + _name + " " + _code; } }