mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-05 11:56:29 +08:00
237 lines
6.2 KiB
Java
237 lines
6.2 KiB
Java
/*
|
|
* Copyright [2011] [wisemapping]
|
|
*
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the license at
|
|
*
|
|
* http://www.wisemapping.org/license
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// ...........................................................................................................
|
|
// (C) Copyright 1996/2007 Fuego Inc. All Rights Reserved
|
|
// THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF Fuego Inc.
|
|
// The copyright notice above does not evidence any actual or intended
|
|
// publication of such source code.
|
|
//
|
|
// Last changed on 2007-08-01 19:08:21 (-0300), by: imanzano. $Revision$
|
|
// ...........................................................................................................
|
|
|
|
package com.wisemapping.model;
|
|
|
|
import com.wisemapping.util.ZipUtils;
|
|
import org.apache.log4j.Logger;
|
|
|
|
import java.io.IOException;
|
|
import java.util.Calendar;
|
|
import java.util.Date;
|
|
import java.util.HashSet;
|
|
import java.util.Set;
|
|
|
|
public class MindMap {
|
|
|
|
//~ Instance fields ......................................................................................
|
|
|
|
final Logger logger = Logger.getLogger(MindMap.class.getName());
|
|
private Calendar creationTime;
|
|
private String creator;
|
|
private String description;
|
|
|
|
private int id;
|
|
private boolean isPublic;
|
|
private Calendar lastModificationTime;
|
|
private String lastModifierUser;
|
|
|
|
private Set<MindmapUser> mindmapUsers = new HashSet<MindmapUser>();
|
|
private MindMapNative nativeBrowser = new MindMapNative();
|
|
private User owner;
|
|
private String properties;
|
|
private String tags;
|
|
private String title;
|
|
private byte[] xml;
|
|
|
|
public static void main(String argv[]) {
|
|
|
|
String xml = "pepe\n hole";
|
|
xml = xml.replace("'", "\\'");
|
|
xml = xml.replace("\n", "");
|
|
xml = xml.trim();
|
|
|
|
System.out.println("xml:" + xml);
|
|
|
|
}
|
|
|
|
//~ Constructors .........................................................................................
|
|
|
|
public MindMap() {
|
|
}
|
|
|
|
public MindMap(Set<MindmapUser> mindmapUsers) {
|
|
this.mindmapUsers = mindmapUsers;
|
|
}
|
|
|
|
//~ Methods ..............................................................................................
|
|
|
|
public void setXml(byte[] xml) {
|
|
this.xml = xml;
|
|
}
|
|
|
|
public byte[] getXml() {
|
|
return xml;
|
|
}
|
|
|
|
public String getUnzippedXml()
|
|
throws IOException {
|
|
return ZipUtils.zipToString(xml);
|
|
}
|
|
|
|
public void setProperties(String properties) {
|
|
this.properties = properties;
|
|
}
|
|
|
|
public String getProperties() {
|
|
String ret;
|
|
if (properties == null) {
|
|
ret = "{zoom:0.85,saveOnLoad:true}";
|
|
} else {
|
|
ret = properties;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
public Set<MindmapUser> getMindmapUsers() {
|
|
return mindmapUsers;
|
|
}
|
|
|
|
public void setMindmapUsers(Set<MindmapUser> mindmapUsers) {
|
|
this.mindmapUsers = mindmapUsers;
|
|
}
|
|
|
|
public void addMindmapUser(MindmapUser mindmaUser) {
|
|
mindmapUsers.add(mindmaUser);
|
|
}
|
|
|
|
public boolean isPublic() {
|
|
return isPublic;
|
|
}
|
|
|
|
public void setPublic(boolean isPublic) {
|
|
this.isPublic = isPublic;
|
|
}
|
|
|
|
public Calendar getLastModificationTime() {
|
|
return lastModificationTime;
|
|
}
|
|
|
|
public Date getLastModificationDate() {
|
|
return new Date();
|
|
}
|
|
|
|
public void setLastModificationTime(Calendar lastModificationTime) {
|
|
this.lastModificationTime = lastModificationTime;
|
|
}
|
|
|
|
public String getLastModifierUser() {
|
|
return lastModifierUser;
|
|
}
|
|
|
|
public void setLastModifierUser(String lastModifierUser) {
|
|
this.lastModifierUser = lastModifierUser;
|
|
}
|
|
|
|
public String getCreator() {
|
|
return creator;
|
|
}
|
|
|
|
public void setCreator(String creatorUser) {
|
|
this.creator = creatorUser;
|
|
}
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getNativeXml()
|
|
throws IOException {
|
|
return getUnzippedXml();
|
|
}
|
|
|
|
|
|
public String getNativeXmlAsJsLiteral()
|
|
throws IOException {
|
|
String xml = getNativeXml();
|
|
if (xml != null) {
|
|
xml = xml.replace("'", "\\'");
|
|
xml = xml.replace("\n", "");
|
|
xml = xml.trim();
|
|
}
|
|
return xml;
|
|
}
|
|
|
|
public void setNativeXml(String nativeXml)
|
|
throws IOException {
|
|
this.xml = ZipUtils.stringToZip(nativeXml);
|
|
}
|
|
|
|
public void setTags(String tags) {
|
|
this.tags = tags;
|
|
}
|
|
|
|
public String getTags() {
|
|
return tags;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public Calendar getCreationTime() {
|
|
return creationTime;
|
|
}
|
|
|
|
public void setCreationTime(Calendar creationTime) {
|
|
this.creationTime = creationTime;
|
|
}
|
|
|
|
public void setOwner(User owner) {
|
|
this.owner = owner;
|
|
}
|
|
|
|
public User getOwner() {
|
|
return owner;
|
|
}
|
|
|
|
public MindMapNative getNativeBrowser() {
|
|
return nativeBrowser;
|
|
}
|
|
|
|
public void setNativeBrowser(MindMapNative nativeBrowser) {
|
|
this.nativeBrowser = nativeBrowser;
|
|
}
|
|
}
|