Create drop statements for all tables and view to dump from tablespace. Just run this code and then copy and paste the output to a sql window and run it! :)
SELECT 'drop table ', table_name, 'cascade constraints;' FROM user_tables;
SELECT 'drop view ', view_name, 'cascade constraints;' FROM user_views;