Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Facilitate Custom File Formats - Required For Mastodon-Git Project #329

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* Utility class that can transform a GUI state
* <code>Map< String, Object ></code> to XML and vice versa.
*/
class MamutViewStateXMLSerialization
public class MamutViewStateXMLSerialization
{

private static final String WINDOW_TAG = "Window";
Expand All @@ -88,7 +88,7 @@ class MamutViewStateXMLSerialization
*/
private static final String CHOSEN_CONTEXT_PROVIDER_KEY = "ContextProvider";

static Element toXml( final Map< String, Object > guiState )
public static Element toXml( final Map< String, Object > guiState )
{
final Element element = new Element( WINDOW_TAG );
toXml( guiState, element );
Expand Down Expand Up @@ -191,7 +191,7 @@ else if ( value instanceof List )
* @param windowManager
* the application {@link WindowManager}.
*/
static void fromXml( final Element windowsEl, final WindowManager windowManager )
public static void fromXml( final Element windowsEl, final WindowManager windowManager )
{
final MamutViews viewFactories = windowManager.getViewFactories();
final Collection< Class< ? extends MamutViewI > > classes = viewFactories.getKeys();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.mastodon.graph.ref.AbstractVertexPool;
import org.mastodon.pool.PoolObjectAttributeSerializer;

class ModelSerializer implements GraphSerializer< Spot, Link >
public class ModelSerializer implements GraphSerializer< Spot, Link >
{
private ModelSerializer()
{}
Expand Down
Loading