Commit a02779b8 authored by Matthew Dawson's avatar Matthew Dawson
Browse files

Rename com.jmatio to ca.mjdsystems.jmatio.

To match the new Group Id, switch the package name.  This also moves the
package name under a controlled domain, avoiding potential name collisions
later.
parent bc8ca145
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
package com.jmatio.common;
package ca.mjdsystems.jmatio.common;

/**
 * MAT-file data types
+2 −2
Original line number Diff line number Diff line
/**
 * 
 */
package com.jmatio.io;
package ca.mjdsystems.jmatio.io;

import java.io.IOException;
import java.io.InputStream;
+2 −2
Original line number Diff line number Diff line
package com.jmatio.io;
package ca.mjdsystems.jmatio.io;

import java.io.IOException;
import java.nio.ByteBuffer;
+6 −6
Original line number Diff line number Diff line
/**
 * 
 */
package com.jmatio.io;
package ca.mjdsystems.jmatio.io;

import java.io.File;
import java.io.IOException;
@@ -10,7 +10,7 @@ import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

import com.jmatio.types.MLArray;
import ca.mjdsystems.jmatio.types.MLArray;

/**
 * This is an {@link OutputStream} that is backed by a {@link RandomAccessFile}
@@ -125,7 +125,7 @@ class FileBufferedDataOutputStream extends OutputStream implements DataOutputStr
    }

    /* (non-Javadoc)
     * @see com.jmatio.io.DataOutputStream#size()
     * @see ca.mjdsystems.jmatio.io.DataOutputStream#size()
     */
    public int size() throws IOException
    {
@@ -135,7 +135,7 @@ class FileBufferedDataOutputStream extends OutputStream implements DataOutputStr
    }

    /* (non-Javadoc)
     * @see com.jmatio.io.DataOutputStream#getByteBuffer()
     * @see ca.mjdsystems.jmatio.io.DataOutputStream#getByteBuffer()
     */
    public ByteBuffer getByteBuffer() throws IOException
    {
@@ -143,7 +143,7 @@ class FileBufferedDataOutputStream extends OutputStream implements DataOutputStr
    }

    /* (non-Javadoc)
     * @see com.jmatio.io.DataOutputStream#write(java.nio.ByteBuffer)
     * @see ca.mjdsystems.jmatio.io.DataOutputStream#write(java.nio.ByteBuffer)
     */
    public void write( ByteBuffer byteBuffer ) throws IOException
    {
+1 −1
Original line number Diff line number Diff line
package com.jmatio.io;
package ca.mjdsystems.jmatio.io;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
Loading