/**
*
*/
public SDL_Palette toSource() {
int i = 0;
SDL_Palette ret = new SDL_Palette();
SDL_Color[] native_colors = new SDL_Color[this.size()];
for ( Iterator<Color> it = this.content_.iterator(); it.hasNext(); ) {
native_colors[i] = it.next().toSource();
++ i;