1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | package Torello.Java.Build; /** * Under Development. Will (one day, over the rainbow) utilize the gargantuan Amazon Java AWS SDK * for "Simple Storage Service" (S3), to copy JavaDoc Web-Pages to Cloud Storage Buckets and * directories. * * <BR /><BR />Right now, I am planning to finish the Java-Doc Upgrader, and therefore, cannot * mess with that at the moment. AWS Java Packages look like a sick f***** joke to me. But, S3 * is pretty common, I guess - Amazon just doesn't give a $*** about the Java-API, so I am going to * have to pick through that enormous pile of doo-doo to figure out how to use it. */ public abstract class CloudSyncS3 extends CloudSync { private CloudSyncS3() { // required: boolean,boolean,boolean,boolean,String,String // found: no arguments // reason: actual and formal argument lists differ in length super(false, false, false, false, null, null); throw new Torello.Java.ToDoException(); } } |