forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implementation of shared database support (full system). (JabRef#1451)
Support for MySQL, PostgreSQL and Oracle database systems. Full entry synchronisation. Full meta data synchronization. Group synchrnoization. Semi-automatic/event based synchronization. Version control system. Conflicts resolving machanisms. User interfaces for different situations. Extensive synchronization and class tests.
- Loading branch information
Showing
105 changed files
with
3,999 additions
and
3,575 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package net.sf.jabref.event; | ||
|
||
import net.sf.jabref.MetaData; | ||
|
||
public class GroupUpdatedEvent { | ||
|
||
private final MetaData metaData; | ||
|
||
/** | ||
* @param metaData Affected instance | ||
*/ | ||
public GroupUpdatedEvent(MetaData metaData) { | ||
this.metaData = metaData; | ||
} | ||
|
||
public MetaData getMetaData() { | ||
return this.metaData; | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/java/net/sf/jabref/event/MetaDataChangedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package net.sf.jabref.event; | ||
|
||
import net.sf.jabref.MetaData; | ||
|
||
/** | ||
* {@link MetaDataChangedEvent} is fired when a tuple of meta data has been put or removed. | ||
*/ | ||
public class MetaDataChangedEvent { | ||
|
||
private final MetaData metaData; | ||
|
||
/** | ||
* @param metaData Affected instance | ||
*/ | ||
public MetaDataChangedEvent(MetaData metaData) { | ||
this.metaData = metaData; | ||
} | ||
|
||
public MetaData getMetaData() { | ||
return this.metaData; | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
src/main/java/net/sf/jabref/event/source/EntryEventSource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* Copyright (C) 2016 JabRef contributors. | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation; either version 2 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License along | ||
with this program; if not, write to the Free Software Foundation, Inc., | ||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
*/ | ||
package net.sf.jabref.event.source; | ||
|
||
/** | ||
* This enum represents the context EntryEvents were sent from. | ||
*/ | ||
public enum EntryEventSource { | ||
LOCAL, | ||
SHARED, | ||
UNDO, | ||
SAVE_ACTION | ||
} |
Oops, something went wrong.